| 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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 // Bluetooth and Cellular at the moment. | 199 // Bluetooth and Cellular at the moment. |
| 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 { |
| 210 // Specifies the timezone which is applied if this value is provided. |
| 211 optional string timezone = 1; |
| 212 } |
| 213 |
| 209 message ChromeDeviceSettingsProto { | 214 message ChromeDeviceSettingsProto { |
| 210 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 215 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
| 211 optional UserWhitelistProto user_whitelist = 2; | 216 optional UserWhitelistProto user_whitelist = 2; |
| 212 optional GuestModeEnabledProto guest_mode_enabled = 3; | 217 optional GuestModeEnabledProto guest_mode_enabled = 3; |
| 213 optional DeviceProxySettingsProto device_proxy_settings = 4; | 218 optional DeviceProxySettingsProto device_proxy_settings = 4; |
| 214 optional CameraEnabledProto camera_enabled = 5; | 219 optional CameraEnabledProto camera_enabled = 5; |
| 215 optional ShowUserNamesOnSigninProto show_user_names = 6; | 220 optional ShowUserNamesOnSigninProto show_user_names = 6; |
| 216 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 221 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
| 217 optional AllowNewUsersProto allow_new_users = 8; | 222 optional AllowNewUsersProto allow_new_users = 8; |
| 218 optional MetricsEnabledProto metrics_enabled = 9; | 223 optional MetricsEnabledProto metrics_enabled = 9; |
| 219 optional ReleaseChannelProto release_channel = 10; | 224 optional ReleaseChannelProto release_channel = 10; |
| 220 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; | 225 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; |
| 221 optional DeviceReportingProto device_reporting = 12; | 226 optional DeviceReportingProto device_reporting = 12; |
| 222 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; | 227 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; |
| 223 optional AppPackProto app_pack = 14; | 228 optional AppPackProto app_pack = 14; |
| 224 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; | 229 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; |
| 225 optional ScreenSaverProto login_screen_saver = 16; | 230 optional ScreenSaverProto login_screen_saver = 16; |
| 226 optional AutoUpdateSettingsProto auto_update_settings = 17; | 231 optional AutoUpdateSettingsProto auto_update_settings = 17; |
| 227 optional StartUpUrlsProto start_up_urls = 18; | 232 optional StartUpUrlsProto start_up_urls = 18; |
| 228 optional PinnedAppsProto pinned_apps = 19; | 233 optional PinnedAppsProto pinned_apps = 19; |
| 234 optional SystemTimezoneProto system_timezone = 20; |
| 229 } | 235 } |
| OLD | NEW |