| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 // login screen if no user activity is present. Only respected if the device | 132 // login screen if no user activity is present. Only respected if the device |
| 133 // is in KIOSK mode. | 133 // is in KIOSK mode. |
| 134 optional string screen_saver_extension_id = 1; | 134 optional string screen_saver_extension_id = 1; |
| 135 | 135 |
| 136 // Specifies the timeout before the screen saver is activated. If this field | 136 // Specifies the timeout before the screen saver is activated. If this field |
| 137 // is omitted or set to 0, no screen-saver will be started. | 137 // is omitted or set to 0, no screen-saver will be started. |
| 138 // Measured in milliseconds. | 138 // Measured in milliseconds. |
| 139 optional int64 screen_saver_timeout = 2; | 139 optional int64 screen_saver_timeout = 2; |
| 140 } | 140 } |
| 141 | 141 |
| 142 // Enterprise controls for auto-update behavior of Chrome OS. |
| 143 message AutoUpdateSettingsProto { |
| 144 // True if we don't want the device to auto-update (target_version_prefix is |
| 145 // ignored in this case). |
| 146 optional bool update_disabled = 1; |
| 147 |
| 148 // Specifies the prefix of the target version we want the device to |
| 149 // update to, if it's on a older version. If the device is already on |
| 150 // a version with the given prefix, then there's no effect. If the device is |
| 151 // on a higher version, it will remain on the higher version as we |
| 152 // don't support rollback yet. The format of this version can be one |
| 153 // of the following: |
| 154 // --------------------------------------------------------------------- |
| 155 // "" (or not set at all): update to latest version available. |
| 156 // 1412.: update to any minor version of 1412 (e.g. 1412.24.34 or 1412.60.2) |
| 157 // 1412.2.: update to any minor version of 1412.2 (e.g. 1412.2.34 or 1412.2.2) |
| 158 // 1412.24.34: update to this specific version only |
| 159 // --------------------------------------------------------------------- |
| 160 optional string target_version_prefix = 2; |
| 161 } |
| 162 |
| 142 message ChromeDeviceSettingsProto { | 163 message ChromeDeviceSettingsProto { |
| 143 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 164 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
| 144 optional UserWhitelistProto user_whitelist = 2; | 165 optional UserWhitelistProto user_whitelist = 2; |
| 145 optional GuestModeEnabledProto guest_mode_enabled = 3; | 166 optional GuestModeEnabledProto guest_mode_enabled = 3; |
| 146 optional DeviceProxySettingsProto device_proxy_settings = 4; | 167 optional DeviceProxySettingsProto device_proxy_settings = 4; |
| 147 optional CameraEnabledProto camera_enabled = 5; | 168 optional CameraEnabledProto camera_enabled = 5; |
| 148 optional ShowUserNamesOnSigninProto show_user_names = 6; | 169 optional ShowUserNamesOnSigninProto show_user_names = 6; |
| 149 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 170 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
| 150 optional AllowNewUsersProto allow_new_users = 8; | 171 optional AllowNewUsersProto allow_new_users = 8; |
| 151 optional MetricsEnabledProto metrics_enabled = 9; | 172 optional MetricsEnabledProto metrics_enabled = 9; |
| 152 optional ReleaseChannelProto release_channel = 10; | 173 optional ReleaseChannelProto release_channel = 10; |
| 153 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; | 174 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; |
| 154 optional DeviceReportingProto device_reporting = 12; | 175 optional DeviceReportingProto device_reporting = 12; |
| 155 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; | 176 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; |
| 156 optional AppPackProto app_pack = 14; | 177 optional AppPackProto app_pack = 14; |
| 157 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; | 178 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; |
| 158 optional ScreenSaverProto login_screen_saver = 16; | 179 optional ScreenSaverProto login_screen_saver = 16; |
| 180 optional AutoUpdateSettingsProto auto_update_settings = 17; |
| 159 } | 181 } |
| OLD | NEW |