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

Side by Side Diff: chrome/browser/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: split out FakeSessionManagerClient Created 7 years, 10 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
bartfab (slow) 2013/02/25 16:51:23 Nit: ... "without user interaction"
dconnelly 2013/02/26 18:04:15 Done.
245 // screen 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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698