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

Unified Diff: components/keyed_service/content/browser_context_keyed_service_factory.h

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (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
Index: components/keyed_service/content/browser_context_keyed_service_factory.h
diff --git a/components/keyed_service/content/browser_context_keyed_service_factory.h b/components/keyed_service/content/browser_context_keyed_service_factory.h
index 2049ccf51f42799bfa7c0f65c36ab37a648274b9..31608e3596f40b5988f6a36ab75758cb47d46176 100644
--- a/components/keyed_service/content/browser_context_keyed_service_factory.h
+++ b/components/keyed_service/content/browser_context_keyed_service_factory.h
@@ -93,14 +93,14 @@ class KEYED_SERVICE_EXPORT BrowserContextKeyedServiceFactory
// and the default implementation removes it from |mapping_| and deletes
// the pointer.
virtual void BrowserContextShutdown(content::BrowserContext* context)
- OVERRIDE;
+ override;
virtual void BrowserContextDestroyed(content::BrowserContext* context)
- OVERRIDE;
+ override;
virtual void SetEmptyTestingFactory(content::BrowserContext* context)
- OVERRIDE;
- virtual bool HasTestingFactory(content::BrowserContext* context) OVERRIDE;
- virtual void CreateServiceNow(content::BrowserContext* context) OVERRIDE;
+ override;
+ virtual bool HasTestingFactory(content::BrowserContext* context) override;
+ virtual void CreateServiceNow(content::BrowserContext* context) override;
private:
friend class BrowserContextDependencyManager;

Powered by Google App Engine
This is Rietveld 408576698