Chromium Code Reviews| Index: remoting/protocol/host_stub.h |
| diff --git a/remoting/protocol/host_stub.h b/remoting/protocol/host_stub.h |
| index 46d75346bd62d12431505a232c853bda86d48c56..0541d56d3e1852bb159dcc70926992fd4855f581 100644 |
| --- a/remoting/protocol/host_stub.h |
| +++ b/remoting/protocol/host_stub.h |
| @@ -17,6 +17,7 @@ namespace protocol { |
| class AudioControl; |
| class Capabilities; |
| class ClientResolution; |
| +class JsonMessage; |
| class PairingResponse; |
| class PairingRequest; |
| class VideoControl; |
| @@ -43,6 +44,9 @@ class HostStub { |
| // Requests pairing between the host and client for PIN-less authentication. |
| virtual void RequestPairing(const PairingRequest& pairing_request) = 0; |
| + // Send a JSON message from the client to the host. |
| + virtual void ProcessClientJson(const JsonMessage& message) = 0; |
|
Wez
2013/08/09 21:25:48
See comments on ClientStub
Jamie
2013/08/09 21:39:06
See my reply on ClientStub :)
|
| + |
| protected: |
| virtual ~HostStub() {} |