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

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: Fixed linter nit. 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') | no next file with comments »
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..888c0b01b90108757fcbcf33d71554da7a39a749 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 PairingResponse {
+ // 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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698