| Index: remoting/protocol/client_event_dispatcher.h
|
| diff --git a/remoting/protocol/client_event_dispatcher.h b/remoting/protocol/client_event_dispatcher.h
|
| index 6e5f8fe769b77bee24d9ce0a3db5e8dd51b83868..35c8dddb78233663557d47434d522752d5353f4b 100644
|
| --- a/remoting/protocol/client_event_dispatcher.h
|
| +++ b/remoting/protocol/client_event_dispatcher.h
|
| @@ -21,13 +21,13 @@ class ClientEventDispatcher : public ChannelDispatcherBase, public InputStub {
|
| virtual ~ClientEventDispatcher();
|
|
|
| // InputStub implementation.
|
| - virtual void InjectKeyEvent(const KeyEvent& event) OVERRIDE;
|
| - virtual void InjectTextEvent(const TextEvent& event) OVERRIDE;
|
| - virtual void InjectMouseEvent(const MouseEvent& event) OVERRIDE;
|
| + virtual void InjectKeyEvent(const KeyEvent& event) override;
|
| + virtual void InjectTextEvent(const TextEvent& event) override;
|
| + virtual void InjectMouseEvent(const MouseEvent& event) override;
|
|
|
| protected:
|
| // ChannelDispatcherBase overrides.
|
| - virtual void OnInitialized() OVERRIDE;
|
| + virtual void OnInitialized() override;
|
|
|
| private:
|
| BufferedSocketWriter writer_;
|
|
|