| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 1238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1249 // * request: MUST BE one of | 1249 // * request: MUST BE one of |
| 1250 // * api_authorization | 1250 // * api_authorization |
| 1251 // * cert_upload | 1251 // * cert_upload |
| 1252 // * check_device_pairing | 1252 // * check_device_pairing |
| 1253 // * device_pairing | 1253 // * device_pairing |
| 1254 // * device_state_retrieval | 1254 // * device_state_retrieval |
| 1255 // * enterprise_check | 1255 // * enterprise_check |
| 1256 // * ping | 1256 // * ping |
| 1257 // * policy | 1257 // * policy |
| 1258 // * register | 1258 // * register |
| 1259 // * status | 1259 // * status_upload |
| 1260 // * unregister | 1260 // * unregister |
| 1261 // * remote_commands | 1261 // * remote_commands |
| 1262 // * attribute_update_permission | 1262 // * attribute_update_permission |
| 1263 // * attribute_update | 1263 // * attribute_update |
| 1264 // * gcm_id_update | 1264 // * gcm_id_update |
| 1265 // * check_android_management | 1265 // * check_android_management |
| 1266 // * certificate_based_register | 1266 // * certificate_based_register |
| 1267 // * active_directory_enroll_play_user | 1267 // * active_directory_enroll_play_user |
| 1268 // * active_directory_play_activity | 1268 // * active_directory_play_activity |
| 1269 // * check_device_license | 1269 // * check_device_license |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1488 optional ActiveDirectoryEnrollPlayUserResponse | 1488 optional ActiveDirectoryEnrollPlayUserResponse |
| 1489 active_directory_enroll_play_user_response = 19; | 1489 active_directory_enroll_play_user_response = 19; |
| 1490 | 1490 |
| 1491 // Response to a Play activity request. | 1491 // Response to a Play activity request. |
| 1492 optional ActiveDirectoryPlayActivityResponse | 1492 optional ActiveDirectoryPlayActivityResponse |
| 1493 active_directory_play_activity_response = 20; | 1493 active_directory_play_activity_response = 20; |
| 1494 | 1494 |
| 1495 // Response to a check device license request. | 1495 // Response to a check device license request. |
| 1496 optional CheckDeviceLicenseResponse check_device_license_response = 21; | 1496 optional CheckDeviceLicenseResponse check_device_license_response = 21; |
| 1497 } | 1497 } |
| OLD | NEW |