| 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 // Policy-configured device-local accounts are on the same domain that the | 228 // Policy-configured device-local accounts are on the same domain that the |
| 229 // device is enrolled to. In contrast to RFC 5322 (which is more restrictive), | 229 // device is enrolled to. In contrast to RFC 5322 (which is more restrictive), |
| 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 |
| 239 // The identifier of the device-local account to which the device |
| 240 // should be logged in automatically. Should be equal to one of the |
| 241 // ids in DeviceLocalAccountInfoProto. |
| 242 optional string auto_login_id = 2; |
| 243 |
| 244 // The amount of time, in milliseconds, that should elapse at the signin |
| 245 // screen without user interaction before automatically logging in. |
| 246 optional int64 auto_login_delay = 3; |
| 238 } | 247 } |
| 239 | 248 |
| 240 message AllowRedeemChromeOsRegistrationOffersProto { | 249 message AllowRedeemChromeOsRegistrationOffersProto { |
| 241 // Chrome OS Registration service provides way for chromeos device users | 250 // Chrome OS Registration service provides way for chromeos device users |
| 242 // to redeem electronic offers provided by service provider. | 251 // to redeem electronic offers provided by service provider. |
| 243 // This value determines if users are allowed to redeem offers through | 252 // This value determines if users are allowed to redeem offers through |
| 244 // Chrome OS Registration service. | 253 // Chrome OS Registration service. |
| 245 optional bool allow_redeem_offers = 1 [default = true]; | 254 optional bool allow_redeem_offers = 1 [default = true]; |
| 246 } | 255 } |
| 247 | 256 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 262 optional AppPackProto app_pack = 14; | 271 optional AppPackProto app_pack = 14; |
| 263 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; | 272 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; |
| 264 optional ScreenSaverProto login_screen_saver = 16; | 273 optional ScreenSaverProto login_screen_saver = 16; |
| 265 optional AutoUpdateSettingsProto auto_update_settings = 17; | 274 optional AutoUpdateSettingsProto auto_update_settings = 17; |
| 266 optional StartUpUrlsProto start_up_urls = 18; | 275 optional StartUpUrlsProto start_up_urls = 18; |
| 267 optional PinnedAppsProto pinned_apps = 19; | 276 optional PinnedAppsProto pinned_apps = 19; |
| 268 optional SystemTimezoneProto system_timezone = 20; | 277 optional SystemTimezoneProto system_timezone = 20; |
| 269 optional DeviceLocalAccountsProto device_local_accounts = 21; | 278 optional DeviceLocalAccountsProto device_local_accounts = 21; |
| 270 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; | 279 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; |
| 271 } | 280 } |
| OLD | NEW |