Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 omitted or set to |
|
tbarzic
2017/06/06 19:02:42
nit: update the comment (no "if the policy is omit
xiyuan
2017/06/08 19:13:57
Done.
| |
| 380 // true, the network configuration will be offered. Otherwise, only an error | 380 // true, the network configuration will be offered. Otherwise, only an error |
| 381 // message is displayed. | 381 // message is displayed. |
| 382 // Note: If both this policy and enable_auto_login_bailout policy above is | 382 // Note: If both this policy and enable_auto_login_bailout policy above is |
| 383 // set to false, there are chances that the device might become totally | 383 // set to false, there are chances that the device might become totally |
| 384 // unusable when there is no Internet access and has to go through the | 384 // unusable when there is no Internet access and has to go through the |
| 385 // recovery process. | 385 // 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 Loading... | |
| 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 } |
| OLD | NEW |