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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 optional bool report_version_info = 1 [default = true]; | 94 optional bool report_version_info = 1 [default = true]; |
95 optional bool report_activity_times = 2 [default = true]; | 95 optional bool report_activity_times = 2 [default = true]; |
96 optional bool report_boot_mode = 3 [default = true]; | 96 optional bool report_boot_mode = 3 [default = true]; |
97 optional bool report_location = 4 [default = false]; | 97 optional bool report_location = 4 [default = false]; |
98 optional bool report_network_interfaces = 5 [default = true]; | 98 optional bool report_network_interfaces = 5 [default = true]; |
99 optional bool report_users = 6 [default = true]; | 99 optional bool report_users = 6 [default = true]; |
100 optional bool report_hardware_status = 7 [default = true]; | 100 optional bool report_hardware_status = 7 [default = true]; |
101 optional bool report_session_status = 8 [default = true]; | 101 optional bool report_session_status = 8 [default = true]; |
102 optional bool report_os_update_status = 10 [default = false]; | 102 optional bool report_os_update_status = 10 [default = false]; |
103 optional bool report_running_kiosk_app = 11 [default = false]; | 103 optional bool report_running_kiosk_app = 11 [default = false]; |
| 104 optional bool report_sound_volume = 12 [default = true]; |
104 | 105 |
105 // Frequency to report device status, default to 3 hours. | 106 // Frequency to report device status, default to 3 hours. |
106 optional int64 device_status_frequency = 9 [default = 10800000]; | 107 optional int64 device_status_frequency = 9 [default = 10800000]; |
107 } | 108 } |
108 | 109 |
109 message EphemeralUsersEnabledProto { | 110 message EphemeralUsersEnabledProto { |
110 // Determines whether users should be treated as ephemeral. In ephemeral users | 111 // Determines whether users should be treated as ephemeral. In ephemeral users |
111 // mode, no cryptohome is created for the user, but a tmpfs mount is used | 112 // mode, no cryptohome is created for the user, but a tmpfs mount is used |
112 // instead such that upon logout all user state is discarded. | 113 // instead such that upon logout all user state is discarded. |
113 optional bool ephemeral_users_enabled = 1; | 114 optional bool ephemeral_users_enabled = 1; |
(...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
831 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; | 832 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; |
832 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = | 833 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = |
833 45; | 834 45; |
834 optional DeviceLoginScreenAppInstallListProto | 835 optional DeviceLoginScreenAppInstallListProto |
835 device_login_screen_app_install_list = 46; | 836 device_login_screen_app_install_list = 46; |
836 optional NetworkThrottlingEnabledProto network_throttling = 47; | 837 optional NetworkThrottlingEnabledProto network_throttling = 47; |
837 optional DeviceWallpaperImageProto device_wallpaper_image = 48; | 838 optional DeviceWallpaperImageProto device_wallpaper_image = 48; |
838 optional LoginScreenLocalesProto login_screen_locales = 49; | 839 optional LoginScreenLocalesProto login_screen_locales = 49; |
839 optional LoginScreenInputMethodsProto login_screen_input_methods = 50; | 840 optional LoginScreenInputMethodsProto login_screen_input_methods = 50; |
840 } | 841 } |
OLD | NEW |