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

Unified Diff: remoting/proto/control.proto

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/proto/control.proto
diff --git a/remoting/proto/control.proto b/remoting/proto/control.proto
index 888c0b01b90108757fcbcf33d71554da7a39a749..4f4313c4ce6190f4909d2f2a1475f191f66f5d7e 100644
--- a/remoting/proto/control.proto
+++ b/remoting/proto/control.proto
@@ -66,3 +66,10 @@ message PairingResponse {
// Shared secret for this client.
optional string shared_secret = 2;
}
+
+message JsonMessage {
+ // The message type.
Wez 2013/08/09 21:25:48 Explain what this is actually used for.
Jamie 2013/08/09 21:39:06 Done.
+ optional string type = 1;
+ // JSON-encoded message.
+ optional string json = 2;
+}

Powered by Google App Engine
This is Rietveld 408576698