diff options
author | thakis <thakis@chromium.org> | 2014-10-28 18:26:08 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-29 01:26:27 +0000 |
commit | 7e7fce4e519f1f507b06ee472d367716baee5899 (patch) | |
tree | c892b12dc6062ce12fd079cd517d81b0804e6f06 /components/storage_monitor | |
parent | e9c0d2eff1877f6ac6cbf9333a645432bf10438d (diff) | |
download | chromium_src-7e7fce4e519f1f507b06ee472d367716baee5899.zip chromium_src-7e7fce4e519f1f507b06ee472d367716baee5899.tar.gz chromium_src-7e7fce4e519f1f507b06ee472d367716baee5899.tar.bz2 |
Add a few missing overrides found by a new clang warning.
Namely, -Winconsistent-missing-override. No behavior change.
BUG=428099
TBR=blundell
Review URL: https://codereview.chromium.org/652233006
Cr-Commit-Position: refs/heads/master@{#301761}
Diffstat (limited to 'components/storage_monitor')
-rw-r--r-- | components/storage_monitor/test_volume_mount_watcher_win.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/components/storage_monitor/test_volume_mount_watcher_win.h b/components/storage_monitor/test_volume_mount_watcher_win.h index ed6df11..267d096 100644 --- a/components/storage_monitor/test_volume_mount_watcher_win.h +++ b/components/storage_monitor/test_volume_mount_watcher_win.h @@ -38,8 +38,6 @@ class TestVolumeMountWatcherWin : public VolumeMountWatcherWin { void FlushWorkerPoolForTesting(); - virtual void DeviceCheckComplete(const base::FilePath& device_path); - const std::vector<base::FilePath>& devices_checked() const { return devices_checked_; } @@ -49,6 +47,7 @@ class TestVolumeMountWatcherWin : public VolumeMountWatcherWin { void ReleaseDeviceCheck(); // VolumeMountWatcherWin: + virtual void DeviceCheckComplete(const base::FilePath& device_path) override; virtual GetAttachedDevicesCallbackType GetAttachedDevicesCallback() const override; virtual GetDeviceDetailsCallbackType |