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