Index: components/storage_monitor/storage_monitor_linux.h |
diff --git a/components/storage_monitor/storage_monitor_linux.h b/components/storage_monitor/storage_monitor_linux.h |
index 9bd0e13366ee1140386e1e750747408ad2898e34..ce443694704367156575d52c4dd33d5ca7076205 100644 |
--- a/components/storage_monitor/storage_monitor_linux.h |
+++ b/components/storage_monitor/storage_monitor_linux.h |
@@ -42,7 +42,7 @@ class StorageMonitorLinux : public StorageMonitor, |
virtual ~StorageMonitorLinux(); |
// Must be called for StorageMonitorLinux to work. |
- virtual void Init() OVERRIDE; |
+ virtual void Init() override; |
protected: |
// Gets device information given a |device_path| and |mount_point|. |
@@ -58,7 +58,7 @@ class StorageMonitorLinux : public StorageMonitor, |
// MtabWatcherLinux::Delegate implementation. |
virtual void UpdateMtab( |
- const MtabWatcherLinux::MountPointDeviceMap& new_mtab) OVERRIDE; |
+ const MtabWatcherLinux::MountPointDeviceMap& new_mtab) override; |
private: |
// Structure to save mounted device information such as device path, unique |
@@ -91,11 +91,11 @@ class StorageMonitorLinux : public StorageMonitor, |
// StorageMonitor implementation. |
virtual bool GetStorageInfoForPath(const base::FilePath& path, |
- StorageInfo* device_info) const OVERRIDE; |
+ StorageInfo* device_info) const override; |
virtual void EjectDevice(const std::string& device_id, |
- base::Callback<void(EjectStatus)> callback) OVERRIDE; |
+ base::Callback<void(EjectStatus)> callback) override; |
virtual device::MediaTransferProtocolManager* |
- media_transfer_protocol_manager() OVERRIDE; |
+ media_transfer_protocol_manager() override; |
// Called when the MtabWatcher has been created. |
void OnMtabWatcherCreated(MtabWatcherLinux* watcher); |