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

Unified Diff: components/storage_monitor/storage_monitor_mac.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_mac.h
diff --git a/components/storage_monitor/storage_monitor_mac.h b/components/storage_monitor/storage_monitor_mac.h
index f10705892493c236834783e644d0a8c2a8ad6dc1..60a76f41886380986e77709802721a686b8dc7c9 100644
--- a/components/storage_monitor/storage_monitor_mac.h
+++ b/components/storage_monitor/storage_monitor_mac.h
@@ -32,7 +32,7 @@ class StorageMonitorMac : public StorageMonitor,
virtual ~StorageMonitorMac();
- virtual void Init() OVERRIDE;
+ virtual void Init() override;
void UpdateDisk(const std::string& bsd_name,
const StorageInfo& info,
@@ -40,11 +40,11 @@ class StorageMonitorMac : public StorageMonitor,
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;
private:
static void DiskAppearedCallback(DADiskRef disk, void* context);

Powered by Google App Engine
This is Rietveld 408576698