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

Unified Diff: components/pairing/pairing_api.proto

Issue 652743003: Fix update and enrollment flow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: indent Created 6 years, 2 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 | « components/pairing/host_pairing_controller.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/pairing/pairing_api.proto
diff --git a/components/pairing/pairing_api.proto b/components/pairing/pairing_api.proto
index 98eab7add38c3d3b70f008b90c547e4623a351d3..0d8e6680be245e27174a6a544962a3230bb1d1fc 100644
--- a/components/pairing/pairing_api.proto
+++ b/components/pairing/pairing_api.proto
@@ -26,10 +26,18 @@ message HostStatusParameters {
UPDATE_STATUS_UPDATED = 3;
}
+ enum EnrollmentStatus {
+ ENROLLMENT_STATUS_UNKNOWN = 0;
+ ENROLLMENT_STATUS_ENROLLING = 1;
+ ENROLLMENT_STATUS_FAILURE = 2;
+ ENROLLMENT_STATUS_SUCCESS = 3;
+ }
+
optional string domain = 1;
optional Connectivity connectivity = 2;
optional UpdateStatus update_status = 3;
- repeated string paired_controllers = 4;
+ optional EnrollmentStatus enrollment_status = 4;
+ repeated string paired_controllers = 5;
}
message HostStatus {
« no previous file with comments | « components/pairing/host_pairing_controller.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698