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>; |