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 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
760 repeated CPUTempInfo cpu_temp_info = 16; | 760 repeated CPUTempInfo cpu_temp_info = 16; |
761 | 761 |
762 // This field is set only when an OS update is needed because of the required | 762 // This field is set only when an OS update is needed because of the required |
763 // platform version of an updated kiosk app is different from the current | 763 // platform version of an updated kiosk app is different from the current |
764 // OS version. | 764 // OS version. |
765 optional OsUpdateStatus os_update_status = 17; | 765 optional OsUpdateStatus os_update_status = 17; |
766 | 766 |
767 // Set only when there is an auto launched with zero delay kiosk app | 767 // Set only when there is an auto launched with zero delay kiosk app |
768 // and it is currently running. Otherwise, this field is empty. | 768 // and it is currently running. Otherwise, this field is empty. |
769 optional AppStatus running_kiosk_app = 18; | 769 optional AppStatus running_kiosk_app = 18; |
| 770 |
| 771 // Sound output volume level in range [0,100]. |
| 772 optional int32 sound_volume = 19; |
770 } | 773 } |
771 | 774 |
772 message OsUpdateStatus { | 775 message OsUpdateStatus { |
773 enum UpdateStatus { | 776 enum UpdateStatus { |
774 OS_UP_TO_DATE = 0; | 777 OS_UP_TO_DATE = 0; |
775 OS_IMAGE_DOWNLOAD_NOT_STARTED = 1; | 778 OS_IMAGE_DOWNLOAD_NOT_STARTED = 1; |
776 OS_IMAGE_DOWNLOAD_IN_PROGRESS = 2; | 779 OS_IMAGE_DOWNLOAD_IN_PROGRESS = 2; |
777 OS_UPDATE_NEED_REBOOT = 3; | 780 OS_UPDATE_NEED_REBOOT = 3; |
778 } | 781 } |
779 | 782 |
(...skipping 694 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 |