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

Unified Diff: remoting/host/host_mock_objects.h

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/host_event_logger_win.cc ('k') | remoting/host/host_status_logger.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/host_mock_objects.h
diff --git a/remoting/host/host_mock_objects.h b/remoting/host/host_mock_objects.h
index bbddd08625666fb74529e192aceb0ed5623022ea..eb35e19a18cd925b68e5060a19e41120c4a1ab89 100644
--- a/remoting/host/host_mock_objects.h
+++ b/remoting/host/host_mock_objects.h
@@ -43,14 +43,14 @@ class MockDesktopEnvironment : public DesktopEnvironment {
protocol::ClientStub* client_stub));
// DesktopEnvironment implementation.
- virtual scoped_ptr<AudioCapturer> CreateAudioCapturer() OVERRIDE;
- virtual scoped_ptr<InputInjector> CreateInputInjector() OVERRIDE;
- virtual scoped_ptr<ScreenControls> CreateScreenControls() OVERRIDE;
- virtual scoped_ptr<webrtc::DesktopCapturer> CreateVideoCapturer() OVERRIDE;
+ virtual scoped_ptr<AudioCapturer> CreateAudioCapturer() override;
+ virtual scoped_ptr<InputInjector> CreateInputInjector() override;
+ virtual scoped_ptr<ScreenControls> CreateScreenControls() override;
+ virtual scoped_ptr<webrtc::DesktopCapturer> CreateVideoCapturer() override;
virtual scoped_ptr<GnubbyAuthHandler> CreateGnubbyAuthHandler(
- protocol::ClientStub* client_stub) OVERRIDE;
+ protocol::ClientStub* client_stub) override;
virtual scoped_ptr<webrtc::MouseCursorMonitor> CreateMouseCursorMonitor()
- OVERRIDE;
+ override;
};
class MockClientSessionControl : public ClientSessionControl {
@@ -96,7 +96,7 @@ class MockDesktopEnvironmentFactory : public DesktopEnvironmentFactory {
MOCK_CONST_METHOD0(SupportsAudioCapture, bool());
virtual scoped_ptr<DesktopEnvironment> Create(
- base::WeakPtr<ClientSessionControl> client_session_control) OVERRIDE;
+ base::WeakPtr<ClientSessionControl> client_session_control) override;
private:
DISALLOW_COPY_AND_ASSIGN(MockDesktopEnvironmentFactory);
« no previous file with comments | « remoting/host/host_event_logger_win.cc ('k') | remoting/host/host_status_logger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698