summaryrefslogtreecommitdiffstats
path: root/chromium/content/child/appcache/appcache_dispatcher.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/child/appcache/appcache_dispatcher.cc')
-rw-r--r--chromium/content/child/appcache/appcache_dispatcher.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/chromium/content/child/appcache/appcache_dispatcher.cc b/chromium/content/child/appcache/appcache_dispatcher.cc
index c3b4ec60898..11e5b9d3bfe 100644
--- a/chromium/content/child/appcache/appcache_dispatcher.cc
+++ b/chromium/content/child/appcache/appcache_dispatcher.cc
@@ -37,12 +37,12 @@ void AppCacheDispatcher::OnCacheSelected(
}
void AppCacheDispatcher::OnStatusChanged(const std::vector<int>& host_ids,
- appcache::Status status) {
+ appcache::AppCacheStatus status) {
frontend_->OnStatusChanged(host_ids, status);
}
void AppCacheDispatcher::OnEventRaised(const std::vector<int>& host_ids,
- appcache::EventID event_id) {
+ appcache::AppCacheEventID event_id) {
frontend_->OnEventRaised(host_ids, event_id);
}
@@ -54,14 +54,14 @@ void AppCacheDispatcher::OnProgressEventRaised(
void AppCacheDispatcher::OnErrorEventRaised(
const std::vector<int>& host_ids,
- const std::string& message) {
- frontend_->OnErrorEventRaised(host_ids, message);
+ const appcache::AppCacheErrorDetails& details) {
+ frontend_->OnErrorEventRaised(host_ids, details);
}
void AppCacheDispatcher::OnLogMessage(
int host_id, int log_level, const std::string& message) {
frontend_->OnLogMessage(
- host_id, static_cast<appcache::LogLevel>(log_level), message);
+ host_id, static_cast<appcache::AppCacheLogLevel>(log_level), message);
}
void AppCacheDispatcher::OnContentBlocked(int host_id,