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

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

Issue 12218078: Implement a policy to autologin a public account. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: r3b@$3 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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 // Policy-configured device-local accounts are on the same domain that the 224 // Policy-configured device-local accounts are on the same domain that the
225 // device is enrolled to. In contrast to RFC 5322 (which is more restrictive), 225 // device is enrolled to. In contrast to RFC 5322 (which is more restrictive),
226 // the local part may contain any characters other than '@'. 226 // the local part may contain any characters other than '@'.
227 optional string id = 1; 227 optional string id = 1;
228 } 228 }
229 229
230 message DeviceLocalAccountsProto { 230 message DeviceLocalAccountsProto {
231 // The list of device-local accounts (i.e. accounts without an associated 231 // The list of device-local accounts (i.e. accounts without an associated
232 // cloud-backed profile) that are available on the device. 232 // cloud-backed profile) that are available on the device.
233 repeated DeviceLocalAccountInfoProto account = 1; 233 repeated DeviceLocalAccountInfoProto account = 1;
234
235 // The identifier of the device-local account to which the device
236 // should be logged in automatically. Should be equal to one of the
237 // ids in DeviceLocalAccountInfoProto.
238 optional string auto_login_id = 2;
239
240 // The amount of time, in milliseconds, that should elapse at the signin
241 // screen without user interaction before automatically logging in.
242 optional int64 auto_login_delay = 3;
234 } 243 }
235 244
236 message AllowRedeemChromeOsRegistrationOffersProto { 245 message AllowRedeemChromeOsRegistrationOffersProto {
237 // Chrome OS Registration service provides way for chromeos device users 246 // Chrome OS Registration service provides way for chromeos device users
238 // to redeem electronic offers provided by service provider. 247 // to redeem electronic offers provided by service provider.
239 // This value determines if users are allowed to redeem offers through 248 // This value determines if users are allowed to redeem offers through
240 // Chrome OS Registration service. 249 // Chrome OS Registration service.
241 optional bool allow_redeem_offers = 1 [default = true]; 250 optional bool allow_redeem_offers = 1 [default = true];
242 } 251 }
243 252
(...skipping 21 matching lines...) Expand all
265 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; 274 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15;
266 optional ScreenSaverProto login_screen_saver = 16; 275 optional ScreenSaverProto login_screen_saver = 16;
267 optional AutoUpdateSettingsProto auto_update_settings = 17; 276 optional AutoUpdateSettingsProto auto_update_settings = 17;
268 optional StartUpUrlsProto start_up_urls = 18; 277 optional StartUpUrlsProto start_up_urls = 18;
269 optional PinnedAppsProto pinned_apps = 19; 278 optional PinnedAppsProto pinned_apps = 19;
270 optional SystemTimezoneProto system_timezone = 20; 279 optional SystemTimezoneProto system_timezone = 20;
271 optional DeviceLocalAccountsProto device_local_accounts = 21; 280 optional DeviceLocalAccountsProto device_local_accounts = 21;
272 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; 281 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22;
273 optional StartUpFlagsProto start_up_flags = 23; 282 optional StartUpFlagsProto start_up_flags = 23;
274 } 283 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698