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

Unified Diff: content/browser/service_worker/service_worker_unregister_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_unregister_job.h
diff --git a/content/browser/service_worker/service_worker_unregister_job.h b/content/browser/service_worker/service_worker_unregister_job.h
index 5e627ae1a4e3a986fcf3ae1607100523e8dacf80..6a4899fd0ea8df1896c3d0f1873c87a4a0a40ac4 100644
--- a/content/browser/service_worker/service_worker_unregister_job.h
+++ b/content/browser/service_worker/service_worker_unregister_job.h
@@ -39,10 +39,10 @@ class ServiceWorkerUnregisterJob : public ServiceWorkerRegisterJobBase {
void AddCallback(const UnregistrationCallback& callback);
// 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:
void OnRegistrationFound(

Powered by Google App Engine
This is Rietveld 408576698