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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
230 // the local part may contain any characters other than '@'. | 230 // the local part may contain any characters other than '@'. |
231 optional string id = 1; | 231 optional string id = 1; |
232 } | 232 } |
233 | 233 |
234 message DeviceLocalAccountsProto { | 234 message DeviceLocalAccountsProto { |
235 // The list of device-local accounts (i.e. accounts without an associated | 235 // The list of device-local accounts (i.e. accounts without an associated |
236 // cloud-backed profile) that are available on the device. | 236 // cloud-backed profile) that are available on the device. |
237 repeated DeviceLocalAccountInfoProto account = 1; | 237 repeated DeviceLocalAccountInfoProto account = 1; |
238 } | 238 } |
239 | 239 |
240 message DeviceLocalAccountAutoLoginProto { | |
Mattias Nissler (ping if slow)
2013/02/11 09:46:02
The design doc originally proposed to put the fiel
dconnelly
2013/02/11 16:17:56
Done.
| |
241 // The identifier of the device-local account to which the device | |
242 // should be logged in automatically. | |
243 optional string id = 1; | |
244 | |
245 // The amount of time that should elapse at the signin screen before | |
246 // automatically logging in. | |
247 optional int64 delay = 2; | |
248 } | |
249 | |
240 message ChromeDeviceSettingsProto { | 250 message ChromeDeviceSettingsProto { |
241 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 251 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
242 optional UserWhitelistProto user_whitelist = 2; | 252 optional UserWhitelistProto user_whitelist = 2; |
243 optional GuestModeEnabledProto guest_mode_enabled = 3; | 253 optional GuestModeEnabledProto guest_mode_enabled = 3; |
244 optional DeviceProxySettingsProto device_proxy_settings = 4; | 254 optional DeviceProxySettingsProto device_proxy_settings = 4; |
245 optional CameraEnabledProto camera_enabled = 5; | 255 optional CameraEnabledProto camera_enabled = 5; |
246 optional ShowUserNamesOnSigninProto show_user_names = 6; | 256 optional ShowUserNamesOnSigninProto show_user_names = 6; |
247 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 257 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
248 optional AllowNewUsersProto allow_new_users = 8; | 258 optional AllowNewUsersProto allow_new_users = 8; |
249 optional MetricsEnabledProto metrics_enabled = 9; | 259 optional MetricsEnabledProto metrics_enabled = 9; |
250 optional ReleaseChannelProto release_channel = 10; | 260 optional ReleaseChannelProto release_channel = 10; |
251 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; | 261 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; |
252 optional DeviceReportingProto device_reporting = 12; | 262 optional DeviceReportingProto device_reporting = 12; |
253 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; | 263 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; |
254 optional AppPackProto app_pack = 14; | 264 optional AppPackProto app_pack = 14; |
255 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; | 265 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; |
256 optional ScreenSaverProto login_screen_saver = 16; | 266 optional ScreenSaverProto login_screen_saver = 16; |
257 optional AutoUpdateSettingsProto auto_update_settings = 17; | 267 optional AutoUpdateSettingsProto auto_update_settings = 17; |
258 optional StartUpUrlsProto start_up_urls = 18; | 268 optional StartUpUrlsProto start_up_urls = 18; |
259 optional PinnedAppsProto pinned_apps = 19; | 269 optional PinnedAppsProto pinned_apps = 19; |
260 optional SystemTimezoneProto system_timezone = 20; | 270 optional SystemTimezoneProto system_timezone = 20; |
261 optional DeviceLocalAccountsProto device_local_accounts = 21; | 271 optional DeviceLocalAccountsProto device_local_accounts = 21; |
272 optional DeviceLocalAccountAutoLoginProto device_local_account_auto_login = | |
273 22; | |
262 } | 274 } |
OLD | NEW |