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

Unified Diff: remoting/protocol/host_control_dispatcher.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/protocol/fake_stream_socket.h ('k') | remoting/protocol/host_event_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/host_control_dispatcher.h
diff --git a/remoting/protocol/host_control_dispatcher.h b/remoting/protocol/host_control_dispatcher.h
index 82aa7938f5e8a0c810972d8291d19b2e022784b4..f97cfcd984d3bb3e3fb0bed3997bd22fcab91c83 100644
--- a/remoting/protocol/host_control_dispatcher.h
+++ b/remoting/protocol/host_control_dispatcher.h
@@ -34,17 +34,17 @@ class HostControlDispatcher : public ChannelDispatcherBase,
virtual ~HostControlDispatcher();
// ClientStub implementation.
- virtual void SetCapabilities(const Capabilities& capabilities) OVERRIDE;
+ virtual void SetCapabilities(const Capabilities& capabilities) override;
virtual void SetPairingResponse(
- const PairingResponse& pairing_response) OVERRIDE;
+ const PairingResponse& pairing_response) override;
virtual void DeliverHostMessage(
- const ExtensionMessage& message) OVERRIDE;
+ const ExtensionMessage& message) override;
// ClipboardStub implementation for sending clipboard data to client.
- virtual void InjectClipboardEvent(const ClipboardEvent& event) OVERRIDE;
+ virtual void InjectClipboardEvent(const ClipboardEvent& event) override;
// CursorShapeStub implementation for sending cursor shape to client.
- virtual void SetCursorShape(const CursorShapeInfo& cursor_shape) OVERRIDE;
+ virtual void SetCursorShape(const CursorShapeInfo& cursor_shape) override;
// Sets the ClipboardStub that will be called for each incoming clipboard
// message. |clipboard_stub| must outlive this object.
@@ -58,7 +58,7 @@ class HostControlDispatcher : public ChannelDispatcherBase,
protected:
// ChannelDispatcherBase overrides.
- virtual void OnInitialized() OVERRIDE;
+ virtual void OnInitialized() override;
private:
void OnMessageReceived(scoped_ptr<ControlMessage> message,
« no previous file with comments | « remoting/protocol/fake_stream_socket.h ('k') | remoting/protocol/host_event_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698