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 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. | |
|
Mattias Nissler (ping if slow)
2013/02/11 17:33:29
nit: mention that this is the same ID as in Device
dconnelly
2013/02/12 12:19:41
Done.
| |
| 241 optional string auto_login_id = 2; | |
| 242 | |
| 243 // The amount of time that should elapse at the signin screen before | |
| 244 // automatically logging in. | |
|
Mattias Nissler (ping if slow)
2013/02/11 17:33:29
nit: mention that this is in milliseconds.
dconnelly
2013/02/12 12:19:41
Done.
| |
| 245 optional int64 auto_login_delay = 3; | |
| 238 } | 246 } |
| 239 | 247 |
| 240 message AllowRedeemChromeOsRegistrationOffersProto { | 248 message AllowRedeemChromeOsRegistrationOffersProto { |
| 241 // Chrome OS Registration service provides way for chromeos device users | 249 // Chrome OS Registration service provides way for chromeos device users |
| 242 // to redeem electronic offers provided by service provider. | 250 // to redeem electronic offers provided by service provider. |
| 243 // This value determines if users are allowed to redeem offers through | 251 // This value determines if users are allowed to redeem offers through |
| 244 // Chrome OS Registration service. | 252 // Chrome OS Registration service. |
| 245 optional bool allow_redeem_offers = 1 [default = true]; | 253 optional bool allow_redeem_offers = 1 [default = true]; |
| 246 } | 254 } |
| 247 | 255 |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 262 optional AppPackProto app_pack = 14; | 270 optional AppPackProto app_pack = 14; |
| 263 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; | 271 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; |
| 264 optional ScreenSaverProto login_screen_saver = 16; | 272 optional ScreenSaverProto login_screen_saver = 16; |
| 265 optional AutoUpdateSettingsProto auto_update_settings = 17; | 273 optional AutoUpdateSettingsProto auto_update_settings = 17; |
| 266 optional StartUpUrlsProto start_up_urls = 18; | 274 optional StartUpUrlsProto start_up_urls = 18; |
| 267 optional PinnedAppsProto pinned_apps = 19; | 275 optional PinnedAppsProto pinned_apps = 19; |
| 268 optional SystemTimezoneProto system_timezone = 20; | 276 optional SystemTimezoneProto system_timezone = 20; |
| 269 optional DeviceLocalAccountsProto device_local_accounts = 21; | 277 optional DeviceLocalAccountsProto device_local_accounts = 21; |
| 270 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; | 278 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; |
| 271 } | 279 } |
| OLD | NEW |