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

Unified Diff: extensions/browser/api/system_info/system_info_api.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
Index: extensions/browser/api/system_info/system_info_api.h
diff --git a/extensions/browser/api/system_info/system_info_api.h b/extensions/browser/api/system_info/system_info_api.h
index 04940a327e0961519a581767a69da96b1e9d7fd4..6a2d2419dc61d9ca06af36928a9c08b4e146f0ca 100644
--- a/extensions/browser/api/system_info/system_info_api.h
+++ b/extensions/browser/api/system_info/system_info_api.h
@@ -19,14 +19,14 @@ class SystemInfoAPI : public BrowserContextKeyedAPI,
static BrowserContextKeyedAPIFactory<SystemInfoAPI>* GetFactoryInstance();
explicit SystemInfoAPI(content::BrowserContext* context);
- virtual ~SystemInfoAPI();
+ ~SystemInfoAPI() override;
// KeyedService implementation.
- virtual void Shutdown() override;
+ void Shutdown() override;
// EventRouter::Observer implementation.
- virtual void OnListenerAdded(const EventListenerInfo& details) override;
- virtual void OnListenerRemoved(const EventListenerInfo& details) override;
+ void OnListenerAdded(const EventListenerInfo& details) override;
+ void OnListenerRemoved(const EventListenerInfo& details) override;
private:
friend class BrowserContextKeyedAPIFactory<SystemInfoAPI>;
« no previous file with comments | « extensions/browser/api/system_display/system_display_api.h ('k') | extensions/browser/api/system_info/system_info_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698