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

Unified Diff: content/child/appcache/appcache_frontend_impl.h

Issue 630743005: Replace OVERRIDE and FINAL with override and final in content/child/[a-s]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months 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 | « content/child/appcache/appcache_dispatcher.h ('k') | content/child/blink_platform_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/appcache/appcache_frontend_impl.h
diff --git a/content/child/appcache/appcache_frontend_impl.h b/content/child/appcache/appcache_frontend_impl.h
index 161f661da2b8caa3c547537505b4d27d7efc8c06..d86cd7c9f9c47e62e2c0b5823dc77c68d19504e9 100644
--- a/content/child/appcache/appcache_frontend_impl.h
+++ b/content/child/appcache/appcache_frontend_impl.h
@@ -12,22 +12,22 @@ namespace content {
class AppCacheFrontendImpl : public AppCacheFrontend {
public:
virtual void OnCacheSelected(int host_id,
- const AppCacheInfo& info) OVERRIDE;
+ const AppCacheInfo& info) override;
virtual void OnStatusChanged(const std::vector<int>& host_ids,
- AppCacheStatus status) OVERRIDE;
+ AppCacheStatus status) override;
virtual void OnEventRaised(const std::vector<int>& host_ids,
- AppCacheEventID event_id) OVERRIDE;
+ AppCacheEventID event_id) override;
virtual void OnProgressEventRaised(const std::vector<int>& host_ids,
const GURL& url,
int num_total,
- int num_complete) OVERRIDE;
+ int num_complete) override;
virtual void OnErrorEventRaised(const std::vector<int>& host_ids,
const AppCacheErrorDetails& details)
- OVERRIDE;
+ override;
virtual void OnLogMessage(int host_id,
AppCacheLogLevel log_level,
- const std::string& message) OVERRIDE;
- virtual void OnContentBlocked(int host_id, const GURL& manifest_url) OVERRIDE;
+ const std::string& message) override;
+ virtual void OnContentBlocked(int host_id, const GURL& manifest_url) override;
};
} // namespace content
« no previous file with comments | « content/child/appcache/appcache_dispatcher.h ('k') | content/child/blink_platform_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698