Chromium Code Reviews| 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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 213 // that are equivalent to one of the timezones in "timezone_settings.cc" are | 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 | 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"). | 215 // still activated with a fallback timezone (currently "GMT"). |
| 216 // Only if no value is provided, the timezone device setting is inactive. In | 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 | 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 | 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. | 219 // user affects the login-screen and all other users. |
| 220 optional string timezone = 1; | 220 optional string timezone = 1; |
| 221 } | 221 } |
| 222 | 222 |
| 223 message DeviceLocalAccountsProto { | |
| 224 // The list of account identifiers for the device-local accounts (i.e. | |
| 225 // accounts without an associated cloud-backed profile) that are available on | |
| 226 // the device. Account identifiers follow the conventions for email addresses, | |
| 227 // e.g. user@example.com. Policy-configured device-local accounts are on the | |
|
Bin
2012/11/13 20:03:49
account_id will be in the format of email address,
Mattias Nissler (ping if slow)
2012/11/14 13:42:48
Done.
| |
| 228 // same domain that the device is enrolled to. | |
| 229 repeated string account_id = 1; | |
|
Bin
2012/11/13 20:03:49
Should we define a singular DeviceLocalAccountProt
Mattias Nissler (ping if slow)
2012/11/14 13:42:48
I prefer not to make ChromeDeviceSettingsProto.dev
| |
| 230 } | |
| 231 | |
| 223 message ChromeDeviceSettingsProto { | 232 message ChromeDeviceSettingsProto { |
| 224 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 233 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
| 225 optional UserWhitelistProto user_whitelist = 2; | 234 optional UserWhitelistProto user_whitelist = 2; |
| 226 optional GuestModeEnabledProto guest_mode_enabled = 3; | 235 optional GuestModeEnabledProto guest_mode_enabled = 3; |
| 227 optional DeviceProxySettingsProto device_proxy_settings = 4; | 236 optional DeviceProxySettingsProto device_proxy_settings = 4; |
| 228 optional CameraEnabledProto camera_enabled = 5; | 237 optional CameraEnabledProto camera_enabled = 5; |
| 229 optional ShowUserNamesOnSigninProto show_user_names = 6; | 238 optional ShowUserNamesOnSigninProto show_user_names = 6; |
| 230 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 239 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
| 231 optional AllowNewUsersProto allow_new_users = 8; | 240 optional AllowNewUsersProto allow_new_users = 8; |
| 232 optional MetricsEnabledProto metrics_enabled = 9; | 241 optional MetricsEnabledProto metrics_enabled = 9; |
| 233 optional ReleaseChannelProto release_channel = 10; | 242 optional ReleaseChannelProto release_channel = 10; |
| 234 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; | 243 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; |
| 235 optional DeviceReportingProto device_reporting = 12; | 244 optional DeviceReportingProto device_reporting = 12; |
| 236 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; | 245 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; |
| 237 optional AppPackProto app_pack = 14; | 246 optional AppPackProto app_pack = 14; |
| 238 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; | 247 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; |
| 239 optional ScreenSaverProto login_screen_saver = 16; | 248 optional ScreenSaverProto login_screen_saver = 16; |
| 240 optional AutoUpdateSettingsProto auto_update_settings = 17; | 249 optional AutoUpdateSettingsProto auto_update_settings = 17; |
| 241 optional StartUpUrlsProto start_up_urls = 18; | 250 optional StartUpUrlsProto start_up_urls = 18; |
| 242 optional PinnedAppsProto pinned_apps = 19; | 251 optional PinnedAppsProto pinned_apps = 19; |
| 243 optional SystemTimezoneProto system_timezone = 20; | 252 optional SystemTimezoneProto system_timezone = 20; |
| 253 optional DeviceLocalAccountsProto device_local_accounts = 21; | |
| 244 } | 254 } |
| OLD | NEW |