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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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. Account identifiers loosely follow |
230 // the conventions for email addresses as specified by RFC 5322, e.g. local | 230 // the conventions for email addresses as specified by RFC 5322, e.g. local |
231 // (user name) and domain parts, separated by the '@' character. | 231 // (user name) and domain parts, separated by the '@' character. |
232 // Policy-configured device-local accounts are on the same domain that the | 232 // |
233 // device is enrolled to. In contrast to RFC 5322 (which is more restrictive), | 233 // Device-local accounts are within subdomains of localhost: |
234 // the local part may contain any characters other than '@'. | 234 // * The public-accounts.localhost domain indicates a Public Account. This is |
| 235 // a special account type providing login-less, ephemeral, |
| 236 // policy-preconfigured browsing sessions. |
| 237 // * Legacy policy-configured Public Accounts are on the same domain that the |
| 238 // device is enrolled to. In contrast to RFC 5322 (which is more |
| 239 // restrictive), the local part may contain any characters other than '@'. |
| 240 // Legacy account identifiers of the form user@domain are treated as if |
| 241 // they were specified as user@domain.public-accounts.localhost. |
| 242 // * <appid>@kiosk-apps.localhost is used for configuring Kiosk Apps, which |
| 243 // may be started from the login screen and run the specified application |
| 244 // in full-screen mode. <appid> is the standard 32-character Chrome App |
| 245 // identifier. |
235 optional string id = 1; | 246 optional string id = 1; |
236 } | 247 } |
237 | 248 |
238 message DeviceLocalAccountsProto { | 249 message DeviceLocalAccountsProto { |
239 // The list of device-local accounts (i.e. accounts without an associated | 250 // The list of device-local accounts (i.e. accounts without an associated |
240 // cloud-backed profile) that are available on the device. | 251 // cloud-backed profile) that are available on the device. |
241 repeated DeviceLocalAccountInfoProto account = 1; | 252 repeated DeviceLocalAccountInfoProto account = 1; |
242 | 253 |
243 // The identifier of the device-local account to which the device | 254 // The identifier of the device-local account to which the device |
244 // should be logged in automatically. Should be equal to one of the | 255 // should be logged in automatically. Should be equal to one of the |
245 // ids in DeviceLocalAccountInfoProto. | 256 // ids in DeviceLocalAccountInfoProto. |
246 optional string auto_login_id = 2; | 257 optional string auto_login_id = 2; |
247 | 258 |
248 // The amount of time, in milliseconds, that should elapse at the signin | 259 // The amount of time, in milliseconds, that should elapse at the signin |
249 // screen without user interaction before automatically logging in. | 260 // screen without user interaction before automatically logging in. |
250 optional int64 auto_login_delay = 3; | 261 optional int64 auto_login_delay = 3; |
| 262 |
| 263 // Whether the keyboard shortcut to prevent zero-delay auto-login should be |
| 264 // enabled or not. If this keyboard shortcut is engaged, the auto-login will |
| 265 // be delayed by 3 minutes so administrators can log in or make configuration |
| 266 // changes. |
| 267 optional bool enable_auto_login_bailout = 4 [default = true]; |
251 } | 268 } |
252 | 269 |
253 message AllowRedeemChromeOsRegistrationOffersProto { | 270 message AllowRedeemChromeOsRegistrationOffersProto { |
254 // Chrome OS Registration service provides way for chromeos device users | 271 // Chrome OS Registration service provides way for chromeos device users |
255 // to redeem electronic offers provided by service provider. | 272 // to redeem electronic offers provided by service provider. |
256 // This value determines if users are allowed to redeem offers through | 273 // This value determines if users are allowed to redeem offers through |
257 // Chrome OS Registration service. | 274 // Chrome OS Registration service. |
258 optional bool allow_redeem_offers = 1 [default = false]; | 275 optional bool allow_redeem_offers = 1 [default = false]; |
259 } | 276 } |
260 | 277 |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
311 optional StartUpUrlsProto start_up_urls = 18; | 328 optional StartUpUrlsProto start_up_urls = 18; |
312 optional PinnedAppsProto pinned_apps = 19; | 329 optional PinnedAppsProto pinned_apps = 19; |
313 optional SystemTimezoneProto system_timezone = 20; | 330 optional SystemTimezoneProto system_timezone = 20; |
314 optional DeviceLocalAccountsProto device_local_accounts = 21; | 331 optional DeviceLocalAccountsProto device_local_accounts = 21; |
315 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; | 332 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; |
316 optional StartUpFlagsProto start_up_flags = 23; | 333 optional StartUpFlagsProto start_up_flags = 23; |
317 optional UptimeLimitProto uptime_limit = 24; | 334 optional UptimeLimitProto uptime_limit = 24; |
318 optional VariationsParameterProto variations_parameter = 25; | 335 optional VariationsParameterProto variations_parameter = 25; |
319 optional AttestationSettingsProto attestation_settings = 26; | 336 optional AttestationSettingsProto attestation_settings = 26; |
320 } | 337 } |
OLD | NEW |