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

Unified Diff: remoting/client/chromoting_client.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/client/audio_player_unittest.cc ('k') | remoting/client/client_status_logger_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/chromoting_client.h
diff --git a/remoting/client/chromoting_client.h b/remoting/client/chromoting_client.h
index e164d7c9241fefce5224ef97a05a9459a4272f78..a0088f520319f1e4f0951dd0c73ef77f01430734 100644
--- a/remoting/client/chromoting_client.h
+++ b/remoting/client/chromoting_client.h
@@ -72,27 +72,27 @@ class ChromotingClient : public protocol::ConnectionToHost::HostEventCallback,
// ClientStub implementation.
virtual void SetCapabilities(
- const protocol::Capabilities& capabilities) OVERRIDE;
+ const protocol::Capabilities& capabilities) override;
virtual void SetPairingResponse(
- const protocol::PairingResponse& pairing_response) OVERRIDE;
+ const protocol::PairingResponse& pairing_response) override;
virtual void DeliverHostMessage(
- const protocol::ExtensionMessage& message) OVERRIDE;
+ const protocol::ExtensionMessage& message) override;
// ClipboardStub implementation for receiving clipboard data from host.
virtual void InjectClipboardEvent(
- const protocol::ClipboardEvent& event) OVERRIDE;
+ const protocol::ClipboardEvent& event) override;
// CursorShapeStub implementation for receiving cursor shape updates.
virtual void SetCursorShape(
- const protocol::CursorShapeInfo& cursor_shape) OVERRIDE;
+ const protocol::CursorShapeInfo& cursor_shape) override;
// ConnectionToHost::HostEventCallback implementation.
virtual void OnConnectionState(
protocol::ConnectionToHost::State state,
- protocol::ErrorCode error) OVERRIDE;
- virtual void OnConnectionReady(bool ready) OVERRIDE;
+ protocol::ErrorCode error) override;
+ virtual void OnConnectionReady(bool ready) override;
virtual void OnRouteChanged(const std::string& channel_name,
- const protocol::TransportRoute& route) OVERRIDE;
+ const protocol::TransportRoute& route) override;
private:
// Called when the connection is authenticated.
« no previous file with comments | « remoting/client/audio_player_unittest.cc ('k') | remoting/client/client_status_logger_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698