| Index: remoting/protocol/host_event_dispatcher.h
|
| diff --git a/remoting/protocol/host_event_dispatcher.h b/remoting/protocol/host_event_dispatcher.h
|
| index d7afc39db4cc8c2403e55953925f46a2a7b954be..968db88081e3a4f6249361a4be60970c2575fa5b 100644
|
| --- a/remoting/protocol/host_event_dispatcher.h
|
| +++ b/remoting/protocol/host_event_dispatcher.h
|
| @@ -21,7 +21,7 @@ class HostEventDispatcher : public ChannelDispatcherBase {
|
| typedef base::Callback<void(int64)> SequenceNumberCallback;
|
|
|
| HostEventDispatcher();
|
| - virtual ~HostEventDispatcher();
|
| + ~HostEventDispatcher() override;
|
|
|
| // Set InputStub that will be called for each incoming input
|
| // message. Doesn't take ownership of |input_stub|. It must outlive
|
| @@ -36,7 +36,7 @@ class HostEventDispatcher : public ChannelDispatcherBase {
|
|
|
| protected:
|
| // ChannelDispatcherBase overrides.
|
| - virtual void OnInitialized() override;
|
| + void OnInitialized() override;
|
|
|
| private:
|
| void OnMessageReceived(scoped_ptr<EventMessage> message,
|
|
|