Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Side by Side Diff: chrome/browser/chromeos/policy/proto/chrome_device_policy.proto

Issue 12457029: Implement a policy to auto-login a public account. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: another rebase because the bots dont want to apply the patch Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 28 matching lines...) Expand all
276 optional ScreenSaverProto login_screen_saver = 16; 285 optional ScreenSaverProto login_screen_saver = 16;
277 optional AutoUpdateSettingsProto auto_update_settings = 17; 286 optional AutoUpdateSettingsProto auto_update_settings = 17;
278 optional StartUpUrlsProto start_up_urls = 18; 287 optional StartUpUrlsProto start_up_urls = 18;
279 optional PinnedAppsProto pinned_apps = 19; 288 optional PinnedAppsProto pinned_apps = 19;
280 optional SystemTimezoneProto system_timezone = 20; 289 optional SystemTimezoneProto system_timezone = 20;
281 optional DeviceLocalAccountsProto device_local_accounts = 21; 290 optional DeviceLocalAccountsProto device_local_accounts = 21;
282 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; 291 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22;
283 optional StartUpFlagsProto start_up_flags = 23; 292 optional StartUpFlagsProto start_up_flags = 23;
284 optional UptimeLimitProto uptime_limit = 24; 293 optional UptimeLimitProto uptime_limit = 24;
285 } 294 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698