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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
219 // fallback timezone (currently "GMT"). In case of an empty string or if no | 219 // fallback timezone (currently "GMT"). In case of an empty string or if no |
220 // value is provided, the timezone device setting is inactive. In that case, | 220 // value is provided, the timezone device setting is inactive. In that case, |
221 // the currently active timezone will remain in use however users can change | 221 // the currently active timezone will remain in use however users can change |
222 // the timezone and the change is persistent. Thus a change by one user | 222 // the timezone and the change is persistent. Thus a change by one user |
223 // affects the login-screen and all other users. | 223 // affects the login-screen and all other users. |
224 optional string timezone = 1; | 224 optional string timezone = 1; |
225 } | 225 } |
226 | 226 |
227 // Describes a single device-local account. | 227 // Describes a single device-local account. |
228 message DeviceLocalAccountInfoProto { | 228 message DeviceLocalAccountInfoProto { |
229 // Identifier for the device-local account. Account identifiers loosely follow | 229 // Identifier for the device-local account. This is an opaque identifier that |
230 // the conventions for email addresses as specified by RFC 5322, e.g. local | 230 // is used to distinguish different device-local accounts configured. All |
231 // (user name) and domain parts, separated by the '@' character. | 231 // configured accounts on a device must have unique identifiers. |
232 // Policy-configured device-local accounts are on the same domain that the | |
233 // device is enrolled to. In contrast to RFC 5322 (which is more restrictive), | |
234 // the local part may contain any characters other than '@'. | |
235 optional string id = 1; | 232 optional string id = 1; |
233 | |
234 // If present, indicates that this device-local account serves as a container | |
235 // for a Kiosk App. The string value should be a valid 32-character Chrome App | |
236 // identifier and specifies the Kiosk app to download and run. | |
237 optional string kiosk_app_id = 2; | |
238 | |
239 // Optional extension update URL to download the Kiosk App package from. If | |
240 // not specified, the app will be downloaded from the standard Chrome Web | |
241 // Store update URL. | |
242 optional string kiosk_app_update_url = 3; | |
236 } | 243 } |
237 | 244 |
238 message DeviceLocalAccountsProto { | 245 message DeviceLocalAccountsProto { |
239 // The list of device-local accounts (i.e. accounts without an associated | 246 // The list of device-local accounts (i.e. accounts without an associated |
240 // cloud-backed profile) that are available on the device. | 247 // cloud-backed profile) that are available on the device. |
241 repeated DeviceLocalAccountInfoProto account = 1; | 248 repeated DeviceLocalAccountInfoProto account = 1; |
242 | 249 |
243 // The identifier of the device-local account to which the device | 250 // The identifier of the device-local account to which the device |
244 // should be logged in automatically. Should be equal to one of the | 251 // should be logged in automatically. Should be equal to one of the |
245 // ids in DeviceLocalAccountInfoProto. | 252 // ids in DeviceLocalAccountInfoProto. |
246 optional string auto_login_id = 2; | 253 optional string auto_login_id = 2; |
247 | 254 |
248 // The amount of time, in milliseconds, that should elapse at the signin | 255 // The amount of time, in milliseconds, that should elapse at the signin |
249 // screen without user interaction before automatically logging in. | 256 // screen without user interaction before automatically logging in. |
250 optional int64 auto_login_delay = 3; | 257 optional int64 auto_login_delay = 3; |
258 | |
259 // Whether the keyboard shortcut to prevent zero-delay auto-login should be | |
bartfab (slow)
2013/04/25 11:17:28
Does this affect all device-local accounts or kios
Mattias Nissler (ping if slow)
2013/04/26 09:10:05
It should eventually affect all device-local accou
| |
260 // enabled or not. If this keyboard shortcut is engaged, the auto-login will | |
261 // be delayed by 3 minutes so administrators can log in or make configuration | |
262 // changes. | |
263 optional bool enable_auto_login_bailout = 4 [default = true]; | |
251 } | 264 } |
252 | 265 |
253 message AllowRedeemChromeOsRegistrationOffersProto { | 266 message AllowRedeemChromeOsRegistrationOffersProto { |
254 // Chrome OS Registration service provides way for chromeos device users | 267 // Chrome OS Registration service provides way for chromeos device users |
255 // to redeem electronic offers provided by service provider. | 268 // to redeem electronic offers provided by service provider. |
256 // This value determines if users are allowed to redeem offers through | 269 // This value determines if users are allowed to redeem offers through |
257 // Chrome OS Registration service. | 270 // Chrome OS Registration service. |
258 optional bool allow_redeem_offers = 1 [default = false]; | 271 optional bool allow_redeem_offers = 1 [default = false]; |
259 } | 272 } |
260 | 273 |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
311 optional StartUpUrlsProto start_up_urls = 18; | 324 optional StartUpUrlsProto start_up_urls = 18; |
312 optional PinnedAppsProto pinned_apps = 19; | 325 optional PinnedAppsProto pinned_apps = 19; |
313 optional SystemTimezoneProto system_timezone = 20; | 326 optional SystemTimezoneProto system_timezone = 20; |
314 optional DeviceLocalAccountsProto device_local_accounts = 21; | 327 optional DeviceLocalAccountsProto device_local_accounts = 21; |
315 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; | 328 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; |
316 optional StartUpFlagsProto start_up_flags = 23; | 329 optional StartUpFlagsProto start_up_flags = 23; |
317 optional UptimeLimitProto uptime_limit = 24; | 330 optional UptimeLimitProto uptime_limit = 24; |
318 optional VariationsParameterProto variations_parameter = 25; | 331 optional VariationsParameterProto variations_parameter = 25; |
319 optional AttestationSettingsProto attestation_settings = 26; | 332 optional AttestationSettingsProto attestation_settings = 26; |
320 } | 333 } |
OLD | NEW |