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

Unified Diff: content/browser/service_worker/service_worker_register_job.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_register_job.h
diff --git a/content/browser/service_worker/service_worker_register_job.h b/content/browser/service_worker/service_worker_register_job.h
index fa143e2340c06d1f03e9d8679d6504896e952e2a..a6e27c11de3ffa32198cd1f5b8dca2377d4fee90 100644
--- a/content/browser/service_worker/service_worker_register_job.h
+++ b/content/browser/service_worker/service_worker_register_job.h
@@ -61,10 +61,10 @@ class ServiceWorkerRegisterJob : public ServiceWorkerRegisterJobBase,
ServiceWorkerProviderHost* provider_host);
// ServiceWorkerRegisterJobBase implementation:
- virtual void Start() OVERRIDE;
- virtual void Abort() OVERRIDE;
- virtual bool Equals(ServiceWorkerRegisterJobBase* job) OVERRIDE;
- virtual RegistrationJobType GetType() OVERRIDE;
+ virtual void Start() override;
+ virtual void Abort() override;
+ virtual bool Equals(ServiceWorkerRegisterJobBase* job) override;
+ virtual RegistrationJobType GetType() override;
private:
FRIEND_TEST_ALL_PREFIXES(ServiceWorkerProviderHostWaitingVersionTest,
@@ -134,12 +134,12 @@ class ServiceWorkerRegisterJob : public ServiceWorkerRegisterJobBase,
ServiceWorkerRegistration* registration);
// EmbeddedWorkerInstance::Listener override of OnPausedAfterDownload.
- virtual void OnPausedAfterDownload() OVERRIDE;
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+ virtual void OnPausedAfterDownload() override;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
// ServiceWorkerRegistration::Listener overrides
virtual void OnRegistrationFinishedUninstalling(
- ServiceWorkerRegistration* registration) OVERRIDE;
+ ServiceWorkerRegistration* registration) override;
void OnCompareScriptResourcesComplete(
ServiceWorkerStatusCode status,

Powered by Google App Engine
This is Rietveld 408576698