| 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 {
|
|
|