summaryrefslogtreecommitdiffstats
path: root/chromium/content/browser/appcache/appcache_frontend_proxy.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/browser/appcache/appcache_frontend_proxy.cc')
-rw-r--r--chromium/content/browser/appcache/appcache_frontend_proxy.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/chromium/content/browser/appcache/appcache_frontend_proxy.cc b/chromium/content/browser/appcache/appcache_frontend_proxy.cc
index 0ef1e32b1b8..ea693e9d71e 100644
--- a/chromium/content/browser/appcache/appcache_frontend_proxy.cc
+++ b/chromium/content/browser/appcache/appcache_frontend_proxy.cc
@@ -18,13 +18,14 @@ void AppCacheFrontendProxy::OnCacheSelected(
}
void AppCacheFrontendProxy::OnStatusChanged(const std::vector<int>& host_ids,
- appcache::Status status) {
+ appcache::AppCacheStatus status) {
sender_->Send(new AppCacheMsg_StatusChanged(host_ids, status));
}
void AppCacheFrontendProxy::OnEventRaised(const std::vector<int>& host_ids,
- appcache::EventID event_id) {
- DCHECK_NE(appcache::PROGRESS_EVENT, event_id); // See OnProgressEventRaised.
+ appcache::AppCacheEventID event_id) {
+ DCHECK_NE(appcache::APPCACHE_PROGRESS_EVENT,
+ event_id); // See OnProgressEventRaised.
sender_->Send(new AppCacheMsg_EventRaised(host_ids, event_id));
}
@@ -37,13 +38,12 @@ void AppCacheFrontendProxy::OnProgressEventRaised(
void AppCacheFrontendProxy::OnErrorEventRaised(
const std::vector<int>& host_ids,
- const std::string& message) {
- sender_->Send(new AppCacheMsg_ErrorEventRaised(
- host_ids, message));
+ const appcache::AppCacheErrorDetails& details) {
+ sender_->Send(new AppCacheMsg_ErrorEventRaised(host_ids, details));
}
void AppCacheFrontendProxy::OnLogMessage(int host_id,
- appcache::LogLevel log_level,
+ appcache::AppCacheLogLevel log_level,
const std::string& message) {
sender_->Send(new AppCacheMsg_LogMessage(host_id, log_level, message));
}