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

Unified Diff: components/storage_monitor/storage_monitor_win.h

Issue 1056633004: Update {virtual,override} to follow C++11 style in components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix logo tracker unittest. Created 5 years, 8 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_win.h
diff --git a/components/storage_monitor/storage_monitor_win.h b/components/storage_monitor/storage_monitor_win.h
index 6b51cab675c5270fa2aca4756c197c90790347e1..2a99f12570b3e8f74d413af01db7754c6e824118 100644
--- a/components/storage_monitor/storage_monitor_win.h
+++ b/components/storage_monitor/storage_monitor_win.h
@@ -29,20 +29,20 @@ class StorageMonitorWin : public StorageMonitor {
// unit tests or in StorageMonitorWin CreateInternal() function.
StorageMonitorWin(VolumeMountWatcherWin* volume_mount_watcher,
PortableDeviceWatcherWin* portable_device_watcher);
- virtual ~StorageMonitorWin();
+ ~StorageMonitorWin() override;
// Must be called after the file thread is created.
- virtual void Init() override;
+ void Init() override;
// StorageMonitor:
- virtual bool GetStorageInfoForPath(const base::FilePath& path,
- StorageInfo* device_info) const override;
- virtual bool GetMTPStorageInfoFromDeviceId(
+ bool GetStorageInfoForPath(const base::FilePath& path,
+ StorageInfo* device_info) const override;
+ bool GetMTPStorageInfoFromDeviceId(
const std::string& storage_device_id,
base::string16* device_location,
base::string16* storage_object_id) const override;
- virtual void EjectDevice(
+ void EjectDevice(
const std::string& device_id,
base::Callback<void(EjectStatus)> callback) override;
« no previous file with comments | « components/search_provider_logos/logo_tracker_unittest.cc ('k') | components/storage_monitor/storage_monitor_win_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698