| 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 1043 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1054 COMMAND_ECHO_TEST = -1; | 1054 COMMAND_ECHO_TEST = -1; |
| 1055 | 1055 |
| 1056 // Reboot the device. | 1056 // Reboot the device. |
| 1057 DEVICE_REBOOT = 0; | 1057 DEVICE_REBOOT = 0; |
| 1058 | 1058 |
| 1059 // Take a screenshot. | 1059 // Take a screenshot. |
| 1060 DEVICE_SCREENSHOT = 1; | 1060 DEVICE_SCREENSHOT = 1; |
| 1061 | 1061 |
| 1062 // Set device volume. | 1062 // Set device volume. |
| 1063 DEVICE_SET_VOLUME = 2; | 1063 DEVICE_SET_VOLUME = 2; |
| 1064 |
| 1065 // Force a refresh of device status (attributes and logs). |
| 1066 DEVICE_FETCH_STATUS = 3; |
| 1064 } | 1067 } |
| 1065 | 1068 |
| 1066 // The command type. | 1069 // The command type. |
| 1067 optional Type type = 1; | 1070 optional Type type = 1; |
| 1068 | 1071 |
| 1069 // An opaque unique identifier for the command. The client processes | 1072 // An opaque unique identifier for the command. The client processes |
| 1070 // the commands in the order of the command list it receives. | 1073 // the commands in the order of the command list it receives. |
| 1071 optional int64 command_id = 2; | 1074 optional int64 command_id = 2; |
| 1072 | 1075 |
| 1073 // The age of the command (in milliseconds) when it is sent from server to | 1076 // The age of the command (in milliseconds) when it is sent from server to |
| (...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1480 check_android_management_response = 18; | 1483 check_android_management_response = 18; |
| 1481 | 1484 |
| 1482 // Response to an Active Directory Play user enrollment request. | 1485 // Response to an Active Directory Play user enrollment request. |
| 1483 optional ActiveDirectoryEnrollPlayUserResponse | 1486 optional ActiveDirectoryEnrollPlayUserResponse |
| 1484 active_directory_enroll_play_user_response = 19; | 1487 active_directory_enroll_play_user_response = 19; |
| 1485 | 1488 |
| 1486 // Response to a Play activity request. | 1489 // Response to a Play activity request. |
| 1487 optional ActiveDirectoryPlayActivityResponse | 1490 optional ActiveDirectoryPlayActivityResponse |
| 1488 active_directory_play_activity_response = 20; | 1491 active_directory_play_activity_response = 20; |
| 1489 } | 1492 } |
| OLD | NEW |