Index: extensions/browser/api/system_info/system_info_api.cc |
diff --git a/extensions/browser/api/system_info/system_info_api.cc b/extensions/browser/api/system_info/system_info_api.cc |
index 488dc410520e6fa950a58fe321093ef66f4c7481..3a1c1b5f513dc3a2309dccbb46ca84440754d25b 100644 |
--- a/extensions/browser/api/system_info/system_info_api.cc |
+++ b/extensions/browser/api/system_info/system_info_api.cc |
@@ -53,7 +53,7 @@ class SystemInfoEventRouter : public gfx::DisplayObserver, |
static SystemInfoEventRouter* GetInstance(); |
SystemInfoEventRouter(); |
- virtual ~SystemInfoEventRouter(); |
+ ~SystemInfoEventRouter() override; |
// Add/remove event listener for the |event_name| event. |
void AddEventListener(const std::string& event_name); |
@@ -61,15 +61,15 @@ class SystemInfoEventRouter : public gfx::DisplayObserver, |
private: |
// gfx::DisplayObserver: |
- virtual void OnDisplayAdded(const gfx::Display& new_display) override; |
- virtual void OnDisplayRemoved(const gfx::Display& old_display) override; |
- virtual void OnDisplayMetricsChanged(const gfx::Display& display, |
- uint32_t metrics) override; |
+ void OnDisplayAdded(const gfx::Display& new_display) override; |
+ void OnDisplayRemoved(const gfx::Display& old_display) override; |
+ void OnDisplayMetricsChanged(const gfx::Display& display, |
+ uint32_t metrics) override; |
// RemovableStorageObserver implementation. |
- virtual void OnRemovableStorageAttached( |
+ void OnRemovableStorageAttached( |
const storage_monitor::StorageInfo& info) override; |
- virtual void OnRemovableStorageDetached( |
+ void OnRemovableStorageDetached( |
const storage_monitor::StorageInfo& info) override; |
// Called from any thread to dispatch the systemInfo event to all extension |