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

Unified Diff: content/browser/service_worker/service_worker_context_core.h

Issue 637183002: Replace FINAL and OVERRIDE with their C++11 counterparts in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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
Index: content/browser/service_worker/service_worker_context_core.h
diff --git a/content/browser/service_worker/service_worker_context_core.h b/content/browser/service_worker/service_worker_context_core.h
index b5178fe99d6c4ebd39bb4b93e0eb3e612a478a27..762fb9b5442b5224efdf5a0a508f2046c1765d72 100644
--- a/content/browser/service_worker/service_worker_context_core.h
+++ b/content/browser/service_worker/service_worker_context_core.h
@@ -108,20 +108,20 @@ class CONTENT_EXPORT ServiceWorkerContextCore
virtual ~ServiceWorkerContextCore();
// ServiceWorkerVersion::Listener overrides.
- virtual void OnWorkerStarted(ServiceWorkerVersion* version) OVERRIDE;
- virtual void OnWorkerStopped(ServiceWorkerVersion* version) OVERRIDE;
- virtual void OnVersionStateChanged(ServiceWorkerVersion* version) OVERRIDE;
+ virtual void OnWorkerStarted(ServiceWorkerVersion* version) override;
+ virtual void OnWorkerStopped(ServiceWorkerVersion* version) override;
+ virtual void OnVersionStateChanged(ServiceWorkerVersion* version) override;
virtual void OnErrorReported(ServiceWorkerVersion* version,
const base::string16& error_message,
int line_number,
int column_number,
- const GURL& source_url) OVERRIDE;
+ const GURL& source_url) override;
virtual void OnReportConsoleMessage(ServiceWorkerVersion* version,
int source_identifier,
int message_level,
const base::string16& message,
int line_number,
- const GURL& source_url) OVERRIDE;
+ const GURL& source_url) override;
ServiceWorkerStorage* storage() { return storage_.get(); }
ServiceWorkerCacheStorageManager* cache_manager() {

Powered by Google App Engine
This is Rietveld 408576698