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

Unified Diff: remoting/client/plugin/chromoting_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/key_event_mapper.h ('k') | remoting/client/plugin/delegating_signal_strategy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/plugin/chromoting_instance.h
diff --git a/remoting/client/plugin/chromoting_instance.h b/remoting/client/plugin/chromoting_instance.h
index 36bba6aa38c093111a090ad96af0b888bb4da51c..bd4e7c41cc69a4493351a9bf8a2d15b5fa7f269d 100644
--- a/remoting/client/plugin/chromoting_instance.h
+++ b/remoting/client/plugin/chromoting_instance.h
@@ -107,34 +107,34 @@ class ChromotingInstance :
virtual ~ChromotingInstance();
// pp::Instance interface.
- virtual void DidChangeFocus(bool has_focus) OVERRIDE;
- virtual void DidChangeView(const pp::View& view) OVERRIDE;
+ virtual void DidChangeFocus(bool has_focus) override;
+ virtual void DidChangeView(const pp::View& view) override;
virtual bool Init(uint32_t argc, const char* argn[],
- const char* argv[]) OVERRIDE;
- virtual void HandleMessage(const pp::Var& message) OVERRIDE;
- virtual bool HandleInputEvent(const pp::InputEvent& event) OVERRIDE;
+ const char* argv[]) override;
+ virtual void HandleMessage(const pp::Var& message) override;
+ virtual bool HandleInputEvent(const pp::InputEvent& event) override;
// ClientUserInterface interface.
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& pairing_response) OVERRIDE;
+ const protocol::PairingResponse& pairing_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;
// protocol::ClipboardStub interface.
virtual void InjectClipboardEvent(
- const protocol::ClipboardEvent& event) OVERRIDE;
+ const protocol::ClipboardEvent& event) override;
// protocol::CursorShapeStub interface.
virtual void SetCursorShape(
- const protocol::CursorShapeInfo& cursor_shape) OVERRIDE;
+ const protocol::CursorShapeInfo& cursor_shape) override;
// Called by PepperView.
void SetDesktopSize(const webrtc::DesktopSize& size,
@@ -245,11 +245,11 @@ class ChromotingInstance :
// MediaSourceVideoRenderer::Delegate implementation.
virtual void OnMediaSourceSize(const webrtc::DesktopSize& size,
- const webrtc::DesktopVector& dpi) OVERRIDE;
- virtual void OnMediaSourceShape(const webrtc::DesktopRegion& shape) OVERRIDE;
- virtual void OnMediaSourceReset(const std::string& format) OVERRIDE;
+ const webrtc::DesktopVector& dpi) override;
+ virtual void OnMediaSourceShape(const webrtc::DesktopRegion& shape) override;
+ virtual void OnMediaSourceReset(const std::string& format) override;
virtual void OnMediaSourceData(uint8_t* buffer, size_t buffer_size,
- bool keyframe) OVERRIDE;
+ bool keyframe) override;
bool initialized_;
« no previous file with comments | « remoting/client/key_event_mapper.h ('k') | remoting/client/plugin/delegating_signal_strategy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698