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

Unified Diff: chromeos/dbus/fake_cros_disks_client.h

Issue 628883002: replace OVERRIDE and FINAL with override and final in chromeos/ (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
« no previous file with comments | « chromeos/dbus/fake_bluetooth_profile_manager_client.h ('k') | chromeos/dbus/fake_cryptohome_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/fake_cros_disks_client.h
diff --git a/chromeos/dbus/fake_cros_disks_client.h b/chromeos/dbus/fake_cros_disks_client.h
index f10d9c04778a100f2f624cf1f30d57bd1ec47831..500aa07d8a71effc7c7c52264fad4c25243b8526 100644
--- a/chromeos/dbus/fake_cros_disks_client.h
+++ b/chromeos/dbus/fake_cros_disks_client.h
@@ -20,36 +20,36 @@ class FakeCrosDisksClient : public CrosDisksClient {
virtual ~FakeCrosDisksClient();
// CrosDisksClient overrides
- virtual void Init(dbus::Bus* bus) OVERRIDE;
+ virtual void Init(dbus::Bus* bus) override;
virtual void Mount(const std::string& source_path,
const std::string& source_format,
const std::string& mount_label,
const base::Closure& callback,
- const base::Closure& error_callback) OVERRIDE;
+ const base::Closure& error_callback) override;
virtual void Unmount(const std::string& device_path,
UnmountOptions options,
const base::Closure& callback,
- const base::Closure& error_callback) OVERRIDE;
+ const base::Closure& error_callback) override;
virtual void EnumerateAutoMountableDevices(
const EnumerateAutoMountableDevicesCallback& callback,
- const base::Closure& error_callback) OVERRIDE;
+ const base::Closure& error_callback) override;
virtual void EnumerateMountEntries(
const EnumerateMountEntriesCallback& callback,
- const base::Closure& error_callback) OVERRIDE;
+ const base::Closure& error_callback) override;
virtual void Format(const std::string& device_path,
const std::string& filesystem,
const base::Closure& callback,
- const base::Closure& error_callback) OVERRIDE;
+ const base::Closure& error_callback) override;
virtual void GetDeviceProperties(
const std::string& device_path,
const GetDevicePropertiesCallback& callback,
- const base::Closure& error_callback) OVERRIDE;
+ const base::Closure& error_callback) override;
virtual void SetMountEventHandler(
- const MountEventHandler& mount_event_handler) OVERRIDE;
+ const MountEventHandler& mount_event_handler) override;
virtual void SetMountCompletedHandler(
- const MountCompletedHandler& mount_completed_handler) OVERRIDE;
+ const MountCompletedHandler& mount_completed_handler) override;
virtual void SetFormatCompletedHandler(
- const FormatCompletedHandler& format_completed_handler) OVERRIDE;
+ const FormatCompletedHandler& format_completed_handler) override;
// Used in tests to simulate signals sent by cros disks layer.
// Invokes handlers set in |SetMountEventHandler|, |SetMountCompletedHandler|,
« no previous file with comments | « chromeos/dbus/fake_bluetooth_profile_manager_client.h ('k') | chromeos/dbus/fake_cryptohome_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698