summaryrefslogtreecommitdiffstats
path: root/chromium/content/child/appcache/appcache_frontend_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/child/appcache/appcache_frontend_impl.h')
-rw-r--r--chromium/content/child/appcache/appcache_frontend_impl.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/chromium/content/child/appcache/appcache_frontend_impl.h b/chromium/content/child/appcache/appcache_frontend_impl.h
index 90774fad58e..90ac4fe3c9c 100644
--- a/chromium/content/child/appcache/appcache_frontend_impl.h
+++ b/chromium/content/child/appcache/appcache_frontend_impl.h
@@ -14,17 +14,18 @@ class AppCacheFrontendImpl : public appcache::AppCacheFrontend {
virtual void OnCacheSelected(int host_id,
const appcache::AppCacheInfo& info) OVERRIDE;
virtual void OnStatusChanged(const std::vector<int>& host_ids,
- appcache::Status status) OVERRIDE;
+ appcache::AppCacheStatus status) OVERRIDE;
virtual void OnEventRaised(const std::vector<int>& host_ids,
- appcache::EventID event_id) OVERRIDE;
+ appcache::AppCacheEventID event_id) OVERRIDE;
virtual void OnProgressEventRaised(const std::vector<int>& host_ids,
const GURL& url,
int num_total,
int num_complete) OVERRIDE;
virtual void OnErrorEventRaised(const std::vector<int>& host_ids,
- const std::string& message) OVERRIDE;
+ const appcache::AppCacheErrorDetails& details)
+ OVERRIDE;
virtual void OnLogMessage(int host_id,
- appcache::LogLevel log_level,
+ appcache::AppCacheLogLevel log_level,
const std::string& message) OVERRIDE;
virtual void OnContentBlocked(int host_id, const GURL& manifest_url) OVERRIDE;
};