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

Unified Diff: chrome/browser/extensions/extension_garbage_collector.h

Issue 666153002: Standardize usage of virtual/override/final in chrome/browser/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
Index: chrome/browser/extensions/extension_garbage_collector.h
diff --git a/chrome/browser/extensions/extension_garbage_collector.h b/chrome/browser/extensions/extension_garbage_collector.h
index 2f56cf689150f0ccc3770b2d271eff4d780d6020..bc3fb9da781f33abcfb99352bd32f5ef235b254f 100644
--- a/chrome/browser/extensions/extension_garbage_collector.h
+++ b/chrome/browser/extensions/extension_garbage_collector.h
@@ -27,7 +27,7 @@ namespace extensions {
class ExtensionGarbageCollector : public KeyedService, public InstallObserver {
public:
explicit ExtensionGarbageCollector(content::BrowserContext* context);
- virtual ~ExtensionGarbageCollector();
+ ~ExtensionGarbageCollector() override;
static ExtensionGarbageCollector* Get(content::BrowserContext* context);
@@ -35,12 +35,12 @@ class ExtensionGarbageCollector : public KeyedService, public InstallObserver {
void GarbageCollectExtensionsForTest();
// Overriddes for KeyedService:
- virtual void Shutdown() override;
+ void Shutdown() override;
// Overriddes for InstallObserver
- virtual void OnBeginCrxInstall(const std::string& extension_id) override;
- virtual void OnFinishCrxInstall(const std::string& extension_id,
- bool success) override;
+ void OnBeginCrxInstall(const std::string& extension_id) override;
+ void OnFinishCrxInstall(const std::string& extension_id,
+ bool success) override;
protected:
// Cleans up the extension install directory. It can end up with garbage in it

Powered by Google App Engine
This is Rietveld 408576698