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

Unified Diff: extensions/browser/browser_context_keyed_api_factory.h

Issue 622343002: replace OVERRIDE and FINAL with override and final in extensions/ (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 | « extensions/browser/app_window/app_window_registry.h ('k') | extensions/browser/content_hash_fetcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/browser_context_keyed_api_factory.h
diff --git a/extensions/browser/browser_context_keyed_api_factory.h b/extensions/browser/browser_context_keyed_api_factory.h
index 15728dc55d294ab1a52b774f609bbd267b214ecf..d23915c975f5a8fa776d6229870b402c3858a48b 100644
--- a/extensions/browser/browser_context_keyed_api_factory.h
+++ b/extensions/browser/browser_context_keyed_api_factory.h
@@ -103,14 +103,14 @@ class BrowserContextKeyedAPIFactory : public BrowserContextKeyedServiceFactory {
private:
// BrowserContextKeyedServiceFactory implementation.
virtual KeyedService* BuildServiceInstanceFor(
- content::BrowserContext* context) const OVERRIDE {
+ content::BrowserContext* context) const override {
return new T(context);
}
// BrowserContextKeyedBaseFactory implementation.
// These can be effectively overridden with template specializations.
virtual content::BrowserContext* GetBrowserContextToUse(
- content::BrowserContext* context) const OVERRIDE {
+ content::BrowserContext* context) const override {
if (T::kServiceRedirectedInIncognito)
return ExtensionsBrowserClient::Get()->GetOriginalContext(context);
@@ -120,11 +120,11 @@ class BrowserContextKeyedAPIFactory : public BrowserContextKeyedServiceFactory {
return BrowserContextKeyedServiceFactory::GetBrowserContextToUse(context);
}
- virtual bool ServiceIsCreatedWithBrowserContext() const OVERRIDE {
+ virtual bool ServiceIsCreatedWithBrowserContext() const override {
return T::kServiceIsCreatedWithBrowserContext;
}
- virtual bool ServiceIsNULLWhileTesting() const OVERRIDE {
+ virtual bool ServiceIsNULLWhileTesting() const override {
return T::kServiceIsNULLWhileTesting;
}
« no previous file with comments | « extensions/browser/app_window/app_window_registry.h ('k') | extensions/browser/content_hash_fetcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698