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

Unified Diff: remoting/client/jni/chromoting_jni_instance.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/frame_consumer_proxy.h ('k') | remoting/client/jni/jni_frame_consumer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/jni/chromoting_jni_instance.h
diff --git a/remoting/client/jni/chromoting_jni_instance.h b/remoting/client/jni/chromoting_jni_instance.h
index ce572fc0973772083ba53a8a034c25e05f5a54c9..204525fa2a267dc31f1260856c0b4b1935d51ae5 100644
--- a/remoting/client/jni/chromoting_jni_instance.h
+++ b/remoting/client/jni/chromoting_jni_instance.h
@@ -96,24 +96,24 @@ class ChromotingJniInstance
// ClientUserInterface 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;
- virtual void SetCapabilities(const std::string& capabilities) OVERRIDE;
+ const protocol::TransportRoute& route) override;
+ virtual void SetCapabilities(const std::string& capabilities) override;
virtual void SetPairingResponse(
- const protocol::PairingResponse& response) OVERRIDE;
+ const protocol::PairingResponse& response) override;
virtual void DeliverHostMessage(
- const protocol::ExtensionMessage& message) OVERRIDE;
- virtual protocol::ClipboardStub* GetClipboardStub() OVERRIDE;
- virtual protocol::CursorShapeStub* GetCursorShapeStub() OVERRIDE;
+ const protocol::ExtensionMessage& message) override;
+ virtual protocol::ClipboardStub* GetClipboardStub() override;
+ virtual protocol::CursorShapeStub* GetCursorShapeStub() override;
// CursorShapeStub implementation.
virtual void InjectClipboardEvent(
- const protocol::ClipboardEvent& event) OVERRIDE;
+ const protocol::ClipboardEvent& event) override;
// ClipboardStub implementation.
- virtual void SetCursorShape(const protocol::CursorShapeInfo& shape) OVERRIDE;
+ virtual void SetCursorShape(const protocol::CursorShapeInfo& shape) override;
private:
// This object is ref-counted, so it cleans itself up.
« no previous file with comments | « remoting/client/frame_consumer_proxy.h ('k') | remoting/client/jni/jni_frame_consumer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698