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

Unified Diff: remoting/proto/control.proto

Issue 14715012: Protocol-level changes required to support PIN-less authentication. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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
« no previous file with comments | « no previous file | remoting/proto/internal.proto » ('j') | remoting/protocol/client_control_dispatcher.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/proto/control.proto
diff --git a/remoting/proto/control.proto b/remoting/proto/control.proto
index 88eda00f68fd8c9c0e5d93dd45436d8847417cbc..a7489fb1b88b792b31966b6b09bc582a38c9c9af 100644
--- a/remoting/proto/control.proto
+++ b/remoting/proto/control.proto
@@ -53,3 +53,16 @@ message Capabilities {
// are separated by spaces).
optional string capabilities = 1;
}
+
+message PairingRequest {
+ // Human-readable name of the client.
+ optional string client_name = 1;
+}
+
+message PairingReply {
rmsousa 2013/05/09 03:55:02 nit: We typically use Request/Response for proto r
Jamie 2013/05/09 17:59:52 Done.
+ // Unique identifier for this client.
+ optional string client_id = 1;
+
+ // Shared secret for this client.
+ optional string shared_secret = 2;
+}
« no previous file with comments | « no previous file | remoting/proto/internal.proto » ('j') | remoting/protocol/client_control_dispatcher.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698