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

Unified Diff: remoting/host/setup/me2me_native_messaging_host_unittest.cc

Issue 628753002: replace OVERRIDE and FINAL with override and final in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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 | « remoting/host/setup/me2me_native_messaging_host.h ('k') | remoting/host/setup/oauth_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/setup/me2me_native_messaging_host_unittest.cc
diff --git a/remoting/host/setup/me2me_native_messaging_host_unittest.cc b/remoting/host/setup/me2me_native_messaging_host_unittest.cc
index 51bee6b90bad5d2032947791e4417ce42a583d01..93391a39104ceceb330fc1417dadddda892bf06e 100644
--- a/remoting/host/setup/me2me_native_messaging_host_unittest.cc
+++ b/remoting/host/setup/me2me_native_messaging_host_unittest.cc
@@ -138,21 +138,21 @@ class MockDaemonControllerDelegate : public DaemonController::Delegate {
virtual ~MockDaemonControllerDelegate();
// DaemonController::Delegate interface.
- virtual DaemonController::State GetState() OVERRIDE;
- virtual scoped_ptr<base::DictionaryValue> GetConfig() OVERRIDE;
+ virtual DaemonController::State GetState() override;
+ virtual scoped_ptr<base::DictionaryValue> GetConfig() override;
virtual void InstallHost(
- const DaemonController::CompletionCallback& done) OVERRIDE;
+ const DaemonController::CompletionCallback& done) override;
virtual void SetConfigAndStart(
scoped_ptr<base::DictionaryValue> config,
bool consent,
- const DaemonController::CompletionCallback& done) OVERRIDE;
+ const DaemonController::CompletionCallback& done) override;
virtual void UpdateConfig(
scoped_ptr<base::DictionaryValue> config,
- const DaemonController::CompletionCallback& done) OVERRIDE;
- virtual void Stop(const DaemonController::CompletionCallback& done) OVERRIDE;
- virtual void SetWindow(void* window_handle) OVERRIDE;
- virtual std::string GetVersion() OVERRIDE;
- virtual DaemonController::UsageStatsConsent GetUsageStatsConsent() OVERRIDE;
+ const DaemonController::CompletionCallback& done) override;
+ virtual void Stop(const DaemonController::CompletionCallback& done) override;
+ virtual void SetWindow(void* window_handle) override;
+ virtual std::string GetVersion() override;
+ virtual DaemonController::UsageStatsConsent GetUsageStatsConsent() override;
private:
DISALLOW_COPY_AND_ASSIGN(MockDaemonControllerDelegate);
@@ -226,8 +226,8 @@ class Me2MeNativeMessagingHostTest : public testing::Test {
Me2MeNativeMessagingHostTest();
virtual ~Me2MeNativeMessagingHostTest();
- virtual void SetUp() OVERRIDE;
- virtual void TearDown() OVERRIDE;
+ virtual void SetUp() override;
+ virtual void TearDown() override;
scoped_ptr<base::DictionaryValue> ReadMessageFromOutputPipe();
« no previous file with comments | « remoting/host/setup/me2me_native_messaging_host.h ('k') | remoting/host/setup/oauth_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698