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

Unified Diff: extensions/browser/image_loader_factory.h

Issue 664933004: Standardize usage of virtual/override/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/image_loader.h ('k') | extensions/browser/lazy_background_task_queue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/image_loader_factory.h
diff --git a/extensions/browser/image_loader_factory.h b/extensions/browser/image_loader_factory.h
index e8073b6e2205672cf4e0f46069096c50658e139d..79b9503ef709f1649225d0a5449f9c5cafe14ad7 100644
--- a/extensions/browser/image_loader_factory.h
+++ b/extensions/browser/image_loader_factory.h
@@ -30,13 +30,13 @@ class ImageLoaderFactory : public BrowserContextKeyedServiceFactory {
friend struct DefaultSingletonTraits<ImageLoaderFactory>;
ImageLoaderFactory();
- virtual ~ImageLoaderFactory();
+ ~ImageLoaderFactory() override;
// BrowserContextKeyedServiceFactory:
- virtual KeyedService* BuildServiceInstanceFor(
+ KeyedService* BuildServiceInstanceFor(
content::BrowserContext* context) const override;
- virtual bool ServiceIsCreatedWithBrowserContext() const override;
- virtual content::BrowserContext* GetBrowserContextToUse(
+ bool ServiceIsCreatedWithBrowserContext() const override;
+ content::BrowserContext* GetBrowserContextToUse(
content::BrowserContext* context) const override;
};
« no previous file with comments | « extensions/browser/image_loader.h ('k') | extensions/browser/lazy_background_task_queue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698