| Index: remoting/host/client_session.cc
|
| diff --git a/remoting/host/client_session.cc b/remoting/host/client_session.cc
|
| index 86bbe7ffa12800eb0bcb1f213f888acc2e28cdd2..933ded3e4748c51d4895e3d01d2f4bf9ec7ed012 100644
|
| --- a/remoting/host/client_session.cc
|
| +++ b/remoting/host/client_session.cc
|
| @@ -187,6 +187,13 @@ void ClientSession::RequestPairing(
|
| }
|
| }
|
|
|
| +void ClientSession::DeliverClientMessage(
|
| + const protocol::ExtensionMessage& message) {
|
| + // No messages are currently supported.
|
| + LOG(INFO) << "Unexpected message received: "
|
| + << message.type() << ": " << message.data();
|
| +}
|
| +
|
| void ClientSession::OnConnectionAuthenticated(
|
| protocol::ConnectionToClient* connection) {
|
| DCHECK(CalledOnValidThread());
|
|
|