| 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 1037 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1048 message RemoteCommand { | 1048 message RemoteCommand { |
| 1049 enum Type { | 1049 enum Type { |
| 1050 // Simple echo command for testing, will be ignored in production code. | 1050 // Simple echo command for testing, will be ignored in production code. |
| 1051 COMMAND_ECHO_TEST = -1; | 1051 COMMAND_ECHO_TEST = -1; |
| 1052 | 1052 |
| 1053 // Reboot the device. | 1053 // Reboot the device. |
| 1054 DEVICE_REBOOT = 0; | 1054 DEVICE_REBOOT = 0; |
| 1055 | 1055 |
| 1056 // Take a screenshot. | 1056 // Take a screenshot. |
| 1057 DEVICE_SCREENSHOT = 1; | 1057 DEVICE_SCREENSHOT = 1; |
| 1058 |
| 1059 // Set device volume. |
| 1060 DEVICE_SET_VOLUME = 2; |
| 1058 } | 1061 } |
| 1059 | 1062 |
| 1060 // The command type. | 1063 // The command type. |
| 1061 optional Type type = 1; | 1064 optional Type type = 1; |
| 1062 | 1065 |
| 1063 // An opaque unique identifier for the command. The client processes | 1066 // An opaque unique identifier for the command. The client processes |
| 1064 // the commands in the order of the command list it receives. | 1067 // the commands in the order of the command list it receives. |
| 1065 optional int64 command_id = 2; | 1068 optional int64 command_id = 2; |
| 1066 | 1069 |
| 1067 // The age of the command (in milliseconds) when it is sent from server to | 1070 // 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... |
| 1474 check_android_management_response = 18; | 1477 check_android_management_response = 18; |
| 1475 | 1478 |
| 1476 // Response to an Active Directory Play user enrollment request. | 1479 // Response to an Active Directory Play user enrollment request. |
| 1477 optional ActiveDirectoryEnrollPlayUserResponse | 1480 optional ActiveDirectoryEnrollPlayUserResponse |
| 1478 active_directory_enroll_play_user_response = 19; | 1481 active_directory_enroll_play_user_response = 19; |
| 1479 | 1482 |
| 1480 // Response to a Play activity request. | 1483 // Response to a Play activity request. |
| 1481 optional ActiveDirectoryPlayActivityResponse | 1484 optional ActiveDirectoryPlayActivityResponse |
| 1482 active_directory_play_activity_response = 20; | 1485 active_directory_play_activity_response = 20; |
| 1483 } | 1486 } |
| OLD | NEW |