diff options
author | jamiewalch@chromium.org <jamiewalch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-13 00:13:48 +0000 |
---|---|---|
committer | jamiewalch@chromium.org <jamiewalch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-13 00:13:48 +0000 |
commit | 09eabd65c680e41cb3565e13d8d3488f5065db4b (patch) | |
tree | 33e255b078618e9212f5538f0de99925fc542e68 /remoting/host/client_session.h | |
parent | 3570ac4e041b3d2f7c314aa1094955d8c982fc13 (diff) | |
download | chromium_src-09eabd65c680e41cb3565e13d8d3488f5065db4b.zip chromium_src-09eabd65c680e41cb3565e13d8d3488f5065db4b.tar.gz chromium_src-09eabd65c680e41cb3565e13d8d3488f5065db4b.tar.bz2 |
Added JsonMessage to the control channel.
This adds the client plumbing needed to get an arbitrary JSON message from client to host, or vice versa. This will allow us to extend the protocol at short notice, without needing to wait for client plugin changes to be promoted to Stable.
BUG=
Review URL: https://chromiumcodereview.appspot.com/22477006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@217127 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/client_session.h')
-rw-r--r-- | remoting/host/client_session.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/remoting/host/client_session.h b/remoting/host/client_session.h index f023abd..474e13b 100644 --- a/remoting/host/client_session.h +++ b/remoting/host/client_session.h @@ -111,6 +111,8 @@ class ClientSession const protocol::Capabilities& capabilities) OVERRIDE; virtual void RequestPairing( const remoting::protocol::PairingRequest& pairing_request) OVERRIDE; + virtual void DeliverClientMessage( + const protocol::ExtensionMessage& message) OVERRIDE; // protocol::ConnectionToClient::EventHandler interface. virtual void OnConnectionAuthenticated( |