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

Unified Diff: components/storage_monitor/storage_monitor_linux.h

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (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: 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);

Powered by Google App Engine
This is Rietveld 408576698