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

Unified Diff: remoting/host/ipc_desktop_environment_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/ipc_desktop_environment.h ('k') | remoting/host/ipc_host_event_logger.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/ipc_desktop_environment_unittest.cc
diff --git a/remoting/host/ipc_desktop_environment_unittest.cc b/remoting/host/ipc_desktop_environment_unittest.cc
index eaa7cfe720401ccfe417bbb7a0c7fe4f651adaaa..e0865cc520d1c7c42ac705e54f5e7619e26ad501 100644
--- a/remoting/host/ipc_desktop_environment_unittest.cc
+++ b/remoting/host/ipc_desktop_environment_unittest.cc
@@ -55,7 +55,7 @@ class FakeDaemonSender : public IPC::Sender {
virtual ~FakeDaemonSender() {}
// IPC::Sender implementation.
- virtual bool Send(IPC::Message* message) OVERRIDE;
+ virtual bool Send(IPC::Message* message) override;
MOCK_METHOD3(ConnectTerminal, void(int, const ScreenResolution&, bool));
MOCK_METHOD1(DisconnectTerminal, void(int));
@@ -73,7 +73,7 @@ class MockDaemonListener : public IPC::Listener {
MockDaemonListener() {}
virtual ~MockDaemonListener() {}
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
MOCK_METHOD1(OnDesktopAttached, void(IPC::PlatformFileForTransit));
MOCK_METHOD1(OnChannelConnected, void(int32));
@@ -123,7 +123,7 @@ class IpcDesktopEnvironmentTest : public testing::Test {
IpcDesktopEnvironmentTest();
virtual ~IpcDesktopEnvironmentTest();
- virtual void SetUp() OVERRIDE;
+ virtual void SetUp() override;
void ConnectTerminal(int terminal_id,
const ScreenResolution& resolution,
« no previous file with comments | « remoting/host/ipc_desktop_environment.h ('k') | remoting/host/ipc_host_event_logger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698