| 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; | 7 option optimize_for = LITE_RUNTIME; |
| 8 | 8 |
| 9 package enterprise_management; | 9 package enterprise_management; |
| 10 | 10 |
| (...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 619 | 619 |
| 620 // Auto-enrollment detection response. | 620 // Auto-enrollment detection response. |
| 621 optional DeviceAutoEnrollmentResponse auto_enrollment_response = 8; | 621 optional DeviceAutoEnrollmentResponse auto_enrollment_response = 8; |
| 622 | 622 |
| 623 // EMCert upload response. | 623 // EMCert upload response. |
| 624 optional DeviceCertUploadResponse cert_upload_response = 9; | 624 optional DeviceCertUploadResponse cert_upload_response = 9; |
| 625 | 625 |
| 626 // Response to OAuth2 authorization code request. | 626 // Response to OAuth2 authorization code request. |
| 627 optional DeviceServiceApiAccessResponse service_api_access_response = 10; | 627 optional DeviceServiceApiAccessResponse service_api_access_response = 10; |
| 628 } | 628 } |
| OLD | NEW |