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

Unified Diff: remoting/host/daemon_process_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/daemon_process.h ('k') | remoting/host/daemon_process_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/daemon_process_unittest.cc
diff --git a/remoting/host/daemon_process_unittest.cc b/remoting/host/daemon_process_unittest.cc
index 7043f788f643325e8ed3982848890677d4bf87ea..22877c6bb3dc945bb4c85a36b7c8de2968947ea8 100644
--- a/remoting/host/daemon_process_unittest.cc
+++ b/remoting/host/daemon_process_unittest.cc
@@ -43,7 +43,7 @@ class FakeDesktopSession : public DesktopSession {
virtual ~FakeDesktopSession();
virtual void SetScreenResolution(
- const ScreenResolution& resolution) OVERRIDE {}
+ const ScreenResolution& resolution) override {}
private:
DISALLOW_COPY_AND_ASSIGN(FakeDesktopSession);
@@ -60,10 +60,10 @@ class MockDaemonProcess : public DaemonProcess {
virtual scoped_ptr<DesktopSession> DoCreateDesktopSession(
int terminal_id,
const ScreenResolution& resolution,
- bool virtual_terminal) OVERRIDE;
+ bool virtual_terminal) override;
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
- virtual void SendToNetwork(IPC::Message* message) OVERRIDE;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
+ virtual void SendToNetwork(IPC::Message* message) override;
MOCK_METHOD1(Received, void(const IPC::Message&));
MOCK_METHOD1(Sent, void(const IPC::Message&));
@@ -124,8 +124,8 @@ class DaemonProcessTest : public testing::Test {
DaemonProcessTest();
virtual ~DaemonProcessTest();
- virtual void SetUp() OVERRIDE;
- virtual void TearDown() OVERRIDE;
+ virtual void SetUp() override;
+ virtual void TearDown() override;
// DaemonProcess mocks
DesktopSession* DoCreateDesktopSession(int terminal_id);
« no previous file with comments | « remoting/host/daemon_process.h ('k') | remoting/host/daemon_process_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698