Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Unified Diff: remoting/protocol/host_stub.h

Issue 22477006: Added JsonMessage to the control channel. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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() {}

Powered by Google App Engine
This is Rietveld 408576698