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

Unified Diff: components/storage_monitor/storage_monitor_chromeos.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_chromeos.h
diff --git a/components/storage_monitor/storage_monitor_chromeos.h b/components/storage_monitor/storage_monitor_chromeos.h
index b3deb546f0bcd32b6fdf8807a2712b980876308f..726f0dc5eddaacde74cd5a5453fe0e9c2a4f75c2 100644
--- a/components/storage_monitor/storage_monitor_chromeos.h
+++ b/components/storage_monitor/storage_monitor_chromeos.h
@@ -37,7 +37,7 @@ class StorageMonitorCros : public StorageMonitor,
// Sets up disk listeners and issues notifications for any discovered
// mount points. Sets up MTP manager and listeners.
- virtual void Init() OVERRIDE;
+ virtual void Init() override;
protected:
void SetMediaTransferProtocolManagerForTest(
@@ -46,28 +46,28 @@ class StorageMonitorCros : public StorageMonitor,
// chromeos::disks::DiskMountManager::Observer implementation.
virtual void OnDiskEvent(
chromeos::disks::DiskMountManager::DiskEvent event,
- const chromeos::disks::DiskMountManager::Disk* disk) OVERRIDE;
+ const chromeos::disks::DiskMountManager::Disk* disk) override;
virtual void OnDeviceEvent(
chromeos::disks::DiskMountManager::DeviceEvent event,
- const std::string& device_path) OVERRIDE;
+ const std::string& device_path) override;
virtual void OnMountEvent(
chromeos::disks::DiskMountManager::MountEvent event,
chromeos::MountError error_code,
const chromeos::disks::DiskMountManager::MountPointInfo& mount_info)
- OVERRIDE;
+ override;
virtual void OnFormatEvent(
chromeos::disks::DiskMountManager::FormatEvent event,
chromeos::FormatError error_code,
- const std::string& device_path) OVERRIDE;
+ const std::string& device_path) override;
// 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;
private:
// Mapping of mount path to removable mass storage info.
« no previous file with comments | « components/storage_monitor/storage_monitor.cc ('k') | components/storage_monitor/storage_monitor_chromeos_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698