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

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

Issue 2920253003: kiosk: Tighten cert manager UI (Closed)
Patch Set: rebase, base test is removed :( Created 3 years, 6 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 optional int64 auto_login_delay = 3; 369 optional int64 auto_login_delay = 3;
370 370
371 // Whether the keyboard shortcut to prevent zero-delay auto-login should be 371 // Whether the keyboard shortcut to prevent zero-delay auto-login should be
372 // enabled or not. By default, the user has 3 seconds to press a shortcut 372 // enabled or not. By default, the user has 3 seconds to press a shortcut
373 // to prevent auto-login, which is useful to sign-in to a regular user session 373 // to prevent auto-login, which is useful to sign-in to a regular user session
374 // and configure the machine. If this policy is set to false then this 374 // and configure the machine. If this policy is set to false then this
375 // shortcut is disabled and there is no way to skip auto-login. 375 // shortcut is disabled and there is no way to skip auto-login.
376 optional bool enable_auto_login_bailout = 4 [default = true]; 376 optional bool enable_auto_login_bailout = 4 [default = true];
377 377
378 // Whether network configuration should be offered or not when the device 378 // Whether network configuration should be offered or not when the device
379 // does not have access to the Internet. If the policy is omitted or set to 379 // does not have access to the Internet. If the policy is set to true, the
380 // true, the network configuration will be offered. Otherwise, only an error 380 // network configuration will be offered. Otherwise (policy is omitted or set
381 // message is displayed. 381 // to false), only an error message is displayed.
382 // Note: If both this policy and enable_auto_login_bailout policy above is 382 // Note: If enable_auto_login_bailout policy above is set to false and this
383 // set to false, there are chances that the device might become totally 383 // policy is omitted or set to false, there are chances that the device might
384 // unusable when there is no Internet access and has to go through the 384 // become totally unusable when there is no Internet access and has to go
385 // recovery process. 385 // through the recovery process.
386 // If the device is offline at startup then the network configuration screen 386 // If the device is offline at startup then the network configuration screen
387 // is always shown, before auto-login kicks in. 387 // is always shown, before auto-login kicks in.
388 optional bool prompt_for_network_when_offline = 5 [default = true]; 388 optional bool prompt_for_network_when_offline = 5 [default = false];
389 } 389 }
390 390
391 message AllowRedeemChromeOsRegistrationOffersProto { 391 message AllowRedeemChromeOsRegistrationOffersProto {
392 // Chrome OS Registration service provides way for chromeos device users 392 // Chrome OS Registration service provides way for chromeos device users
393 // to redeem electronic offers provided by service provider. 393 // to redeem electronic offers provided by service provider.
394 // This value determines if users are allowed to redeem offers through 394 // This value determines if users are allowed to redeem offers through
395 // Chrome OS Registration service. 395 // Chrome OS Registration service.
396 optional bool allow_redeem_offers = 1 [default = true]; 396 optional bool allow_redeem_offers = 1 [default = true];
397 } 397 }
398 398
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after
848 45; 848 45;
849 optional DeviceLoginScreenAppInstallListProto 849 optional DeviceLoginScreenAppInstallListProto
850 device_login_screen_app_install_list = 46; 850 device_login_screen_app_install_list = 46;
851 optional NetworkThrottlingEnabledProto network_throttling = 47; 851 optional NetworkThrottlingEnabledProto network_throttling = 47;
852 optional DeviceWallpaperImageProto device_wallpaper_image = 48; 852 optional DeviceWallpaperImageProto device_wallpaper_image = 48;
853 optional LoginScreenLocalesProto login_screen_locales = 49; 853 optional LoginScreenLocalesProto login_screen_locales = 49;
854 optional LoginScreenInputMethodsProto login_screen_input_methods = 50; 854 optional LoginScreenInputMethodsProto login_screen_input_methods = 50;
855 optional DeviceEcryptfsMigrationStrategyProto 855 optional DeviceEcryptfsMigrationStrategyProto
856 device_ecryptfs_migration_strategy = 51; 856 device_ecryptfs_migration_strategy = 51;
857 } 857 }
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/app_launch_controller.cc ('k') | chrome/browser/resources/options/certificate_manager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698