| Index: remoting/protocol/connection_to_client.h
|
| diff --git a/remoting/protocol/connection_to_client.h b/remoting/protocol/connection_to_client.h
|
| index aee5e4ad8b0c8f800108d85ece71563f3d8387cb..cfbe35aad7ef61ceed2b0187db01e6879eb89e19 100644
|
| --- a/remoting/protocol/connection_to_client.h
|
| +++ b/remoting/protocol/connection_to_client.h
|
| @@ -67,7 +67,7 @@ class ConnectionToClient : public base::NonThreadSafe,
|
| // Constructs a ConnectionToClient object for the |session|. Takes
|
| // ownership of |session|.
|
| explicit ConnectionToClient(Session* session);
|
| - virtual ~ConnectionToClient();
|
| + ~ConnectionToClient() override;
|
|
|
| // Set |event_handler| for connection events. Must be called once when this
|
| // object is created.
|
| @@ -101,9 +101,9 @@ class ConnectionToClient : public base::NonThreadSafe,
|
| virtual InputStub* input_stub();
|
|
|
| // Session::EventHandler interface.
|
| - virtual void OnSessionStateChange(Session::State state) override;
|
| - virtual void OnSessionRouteChange(const std::string& channel_name,
|
| - const TransportRoute& route) override;
|
| + void OnSessionStateChange(Session::State state) override;
|
| + void OnSessionRouteChange(const std::string& channel_name,
|
| + const TransportRoute& route) override;
|
|
|
| private:
|
| // Callback for channel initialization.
|
|
|