| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 syntax = "proto2"; | 5 syntax = "proto2"; |
| 6 | 6 |
| 7 option optimize_for = LITE_RUNTIME; |
| 8 |
| 7 package enterprise_management; | 9 package enterprise_management; |
| 8 | 10 |
| 9 // Request from device to server to register device. | 11 // Request from device to server to register device. |
| 10 message DeviceRegisterRequest { | 12 message DeviceRegisterRequest { |
| 11 // Reregister device without erasing server state. It can be used | 13 // Reregister device without erasing server state. It can be used |
| 12 // to refresh dmtoken etc. Client MUST set this value to true if it | 14 // to refresh dmtoken etc. Client MUST set this value to true if it |
| 13 // reuses an existing device id. | 15 // reuses an existing device id. |
| 14 optional bool reregister = 1; | 16 optional bool reregister = 1; |
| 15 | 17 |
| 16 // Device register type. This field does not exist for TT release. | 18 // Device register type. This field does not exist for TT release. |
| (...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 483 | 485 |
| 484 // Device status report response. | 486 // Device status report response. |
| 485 optional DeviceStatusReportResponse device_status_report_response = 6; | 487 optional DeviceStatusReportResponse device_status_report_response = 6; |
| 486 | 488 |
| 487 // Session status report response. | 489 // Session status report response. |
| 488 optional SessionStatusReportResponse session_status_report_response = 7; | 490 optional SessionStatusReportResponse session_status_report_response = 7; |
| 489 | 491 |
| 490 // Auto-enrollment detection response. | 492 // Auto-enrollment detection response. |
| 491 optional DeviceAutoEnrollmentResponse auto_enrollment_response = 8; | 493 optional DeviceAutoEnrollmentResponse auto_enrollment_response = 8; |
| 492 } | 494 } |
| OLD | NEW |