| 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 repeated ConnectionType allowed_connection_types = 5; | 200 repeated ConnectionType allowed_connection_types = 5; |
| 201 } | 201 } |
| 202 | 202 |
| 203 message StartUpUrlsProto { | 203 message StartUpUrlsProto { |
| 204 // Specifies the URLs to be loaded on login to the anonymous account used if | 204 // Specifies the URLs to be loaded on login to the anonymous account used if |
| 205 // the device is in RETAIL mode. | 205 // the device is in RETAIL mode. |
| 206 repeated string start_up_urls = 1; | 206 repeated string start_up_urls = 1; |
| 207 } | 207 } |
| 208 | 208 |
| 209 message SystemTimezoneProto { | 209 message SystemTimezoneProto { |
| 210 // Specifies the timezone which is applied if this value is provided. Valid | 210 // Specifies an owner-determined timezone that applies to the login screen and |
| 211 // values are listed in "timezone_settings.cc". Additionally, timezones from | 211 // all users. Valid values are listed in "timezone_settings.cc". Additionally, |
| 212 // the "IANA Time Zone Database" (e.g. listed on wikipedia) that are | 212 // timezones from the "IANA Time Zone Database" (e.g. listed on wikipedia) |
| 213 // equivalent to one of the timezones in "timezone_settings.cc" are valid. | 213 // that are equivalent to one of the timezones in "timezone_settings.cc" are |
| 214 // valid. In case of an invalid value (e.g. the empty string), the setting is |
| 215 // still activated with a fallback timezone (currently "GMT"). |
| 216 // Only if no value is provided, the timezone device setting is inactive. In |
| 217 // that case, the currently active timezone will remain in use however users |
| 218 // can change the timezone and the change is persistent. Thus a change by one |
| 219 // user affects the login-screen and all other users. |
| 214 optional string timezone = 1; | 220 optional string timezone = 1; |
| 215 } | 221 } |
| 216 | 222 |
| 217 message ChromeDeviceSettingsProto { | 223 message ChromeDeviceSettingsProto { |
| 218 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 224 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
| 219 optional UserWhitelistProto user_whitelist = 2; | 225 optional UserWhitelistProto user_whitelist = 2; |
| 220 optional GuestModeEnabledProto guest_mode_enabled = 3; | 226 optional GuestModeEnabledProto guest_mode_enabled = 3; |
| 221 optional DeviceProxySettingsProto device_proxy_settings = 4; | 227 optional DeviceProxySettingsProto device_proxy_settings = 4; |
| 222 optional CameraEnabledProto camera_enabled = 5; | 228 optional CameraEnabledProto camera_enabled = 5; |
| 223 optional ShowUserNamesOnSigninProto show_user_names = 6; | 229 optional ShowUserNamesOnSigninProto show_user_names = 6; |
| 224 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 230 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
| 225 optional AllowNewUsersProto allow_new_users = 8; | 231 optional AllowNewUsersProto allow_new_users = 8; |
| 226 optional MetricsEnabledProto metrics_enabled = 9; | 232 optional MetricsEnabledProto metrics_enabled = 9; |
| 227 optional ReleaseChannelProto release_channel = 10; | 233 optional ReleaseChannelProto release_channel = 10; |
| 228 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; | 234 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; |
| 229 optional DeviceReportingProto device_reporting = 12; | 235 optional DeviceReportingProto device_reporting = 12; |
| 230 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; | 236 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; |
| 231 optional AppPackProto app_pack = 14; | 237 optional AppPackProto app_pack = 14; |
| 232 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; | 238 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; |
| 233 optional ScreenSaverProto login_screen_saver = 16; | 239 optional ScreenSaverProto login_screen_saver = 16; |
| 234 optional AutoUpdateSettingsProto auto_update_settings = 17; | 240 optional AutoUpdateSettingsProto auto_update_settings = 17; |
| 235 optional StartUpUrlsProto start_up_urls = 18; | 241 optional StartUpUrlsProto start_up_urls = 18; |
| 236 optional PinnedAppsProto pinned_apps = 19; | 242 optional PinnedAppsProto pinned_apps = 19; |
| 237 optional SystemTimezoneProto system_timezone = 20; | 243 optional SystemTimezoneProto system_timezone = 20; |
| 238 } | 244 } |
| OLD | NEW |