Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(258)

Unified Diff: webkit/appcache/appcache_frontend_impl.h

Issue 8539047: Add OVERRIDE to webkit/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/appcache/appcache_disk_cache.h ('k') | webkit/appcache/appcache_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache_frontend_impl.h
diff --git a/webkit/appcache/appcache_frontend_impl.h b/webkit/appcache/appcache_frontend_impl.h
index ce37d2611e9fb87d36131a094e8fd05895476f39..7c28eabcd7a61e5bb05032716c7352260ade89a9 100644
--- a/webkit/appcache/appcache_frontend_impl.h
+++ b/webkit/appcache/appcache_frontend_impl.h
@@ -15,19 +15,19 @@ namespace appcache {
class APPCACHE_EXPORT AppCacheFrontendImpl : public AppCacheFrontend {
public:
virtual void OnCacheSelected(
- int host_id, const appcache::AppCacheInfo& info);
+ int host_id, const appcache::AppCacheInfo& info) OVERRIDE;
virtual void OnStatusChanged(const std::vector<int>& host_ids,
- Status status);
+ Status status) OVERRIDE;
virtual void OnEventRaised(const std::vector<int>& host_ids,
- EventID event_id);
+ EventID event_id) OVERRIDE;
virtual void OnProgressEventRaised(const std::vector<int>& host_ids,
const GURL& url,
- int num_total, int num_complete);
+ int num_total, int num_complete) OVERRIDE;
virtual void OnErrorEventRaised(const std::vector<int>& host_ids,
- const std::string& message);
+ const std::string& message) OVERRIDE;
virtual void OnLogMessage(int host_id, LogLevel log_level,
- const std::string& message);
- virtual void OnContentBlocked(int host_id, const GURL& manifest_url);
+ const std::string& message) OVERRIDE;
+ virtual void OnContentBlocked(int host_id, const GURL& manifest_url) OVERRIDE;
};
} // namespace
« no previous file with comments | « webkit/appcache/appcache_disk_cache.h ('k') | webkit/appcache/appcache_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698