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

Unified Diff: chromeos/dbus/fake_debug_daemon_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_cryptohome_client.h ('k') | chromeos/dbus/fake_easy_unlock_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/fake_debug_daemon_client.h
diff --git a/chromeos/dbus/fake_debug_daemon_client.h b/chromeos/dbus/fake_debug_daemon_client.h
index b4054106f9524d88650f42beb9ad57204e96d00b..c8b525674c0d15b9856d6593d438e6b2b6ce07cc 100644
--- a/chromeos/dbus/fake_debug_daemon_client.h
+++ b/chromeos/dbus/fake_debug_daemon_client.h
@@ -18,38 +18,38 @@ class CHROMEOS_EXPORT FakeDebugDaemonClient : public DebugDaemonClient {
FakeDebugDaemonClient();
virtual ~FakeDebugDaemonClient();
- virtual void Init(dbus::Bus* bus) OVERRIDE;
+ virtual void Init(dbus::Bus* bus) override;
virtual void DumpDebugLogs(bool is_compressed,
base::File file,
scoped_refptr<base::TaskRunner> task_runner,
- const GetDebugLogsCallback& callback) OVERRIDE;
+ const GetDebugLogsCallback& callback) override;
virtual void SetDebugMode(const std::string& subsystem,
- const SetDebugModeCallback& callback) OVERRIDE;
- virtual void StartSystemTracing() OVERRIDE;
+ const SetDebugModeCallback& callback) override;
+ virtual void StartSystemTracing() override;
virtual bool RequestStopSystemTracing(
scoped_refptr<base::TaskRunner> task_runner,
- const StopSystemTracingCallback& callback) OVERRIDE;
+ const StopSystemTracingCallback& callback) override;
virtual void GetRoutes(bool numeric,
bool ipv6,
- const GetRoutesCallback& callback) OVERRIDE;
+ const GetRoutesCallback& callback) override;
virtual void GetNetworkStatus(const GetNetworkStatusCallback& callback)
- OVERRIDE;
- virtual void GetModemStatus(const GetModemStatusCallback& callback) OVERRIDE;
- virtual void GetWiMaxStatus(const GetWiMaxStatusCallback& callback) OVERRIDE;
+ override;
+ virtual void GetModemStatus(const GetModemStatusCallback& callback) override;
+ virtual void GetWiMaxStatus(const GetWiMaxStatusCallback& callback) override;
virtual void GetNetworkInterfaces(
- const GetNetworkInterfacesCallback& callback) OVERRIDE;
+ const GetNetworkInterfacesCallback& callback) override;
virtual void GetPerfData(uint32_t duration,
- const GetPerfDataCallback& callback) OVERRIDE;
- virtual void GetScrubbedLogs(const GetLogsCallback& callback) OVERRIDE;
- virtual void GetAllLogs(const GetLogsCallback& callback) OVERRIDE;
- virtual void GetUserLogFiles(const GetLogsCallback& callback) OVERRIDE;
+ const GetPerfDataCallback& callback) override;
+ virtual void GetScrubbedLogs(const GetLogsCallback& callback) override;
+ virtual void GetAllLogs(const GetLogsCallback& callback) override;
+ virtual void GetUserLogFiles(const GetLogsCallback& callback) override;
virtual void TestICMP(const std::string& ip_address,
- const TestICMPCallback& callback) OVERRIDE;
+ const TestICMPCallback& callback) override;
virtual void TestICMPWithOptions(
const std::string& ip_address,
const std::map<std::string, std::string>& options,
- const TestICMPCallback& callback) OVERRIDE;
- virtual void UploadCrashes() OVERRIDE;
+ const TestICMPCallback& callback) override;
+ virtual void UploadCrashes() override;
private:
DISALLOW_COPY_AND_ASSIGN(FakeDebugDaemonClient);
« no previous file with comments | « chromeos/dbus/fake_cryptohome_client.h ('k') | chromeos/dbus/fake_easy_unlock_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698