| 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 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 set to true, the | 379 // does not have access to the Internet. If the policy is set to true, the |
| 380 // network configuration will be offered. Otherwise (policy is omitted or set | 380 // network configuration will be offered. Otherwise (policy is omitted or set |
| 381 // to false), only an error message is displayed. | 381 // to false), only an error message is displayed. |
| 382 // Note: If enable_auto_login_bailout policy above is set to false and this | 382 // Note: If enable_auto_login_bailout policy above is set to false and this |
| 383 // policy is omitted or set to false, there are chances that the device might | 383 // policy is omitted or set to false, there are chances that the device might |
| 384 // become totally unusable when there is no Internet access and has to go | 384 // become totally unusable when there is no Internet access and has to go |
| 385 // through the 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 = false]; | 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. |
| (...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 869 device_login_screen_app_install_list = 46; | 869 device_login_screen_app_install_list = 46; |
| 870 optional NetworkThrottlingEnabledProto network_throttling = 47; | 870 optional NetworkThrottlingEnabledProto network_throttling = 47; |
| 871 optional DeviceWallpaperImageProto device_wallpaper_image = 48; | 871 optional DeviceWallpaperImageProto device_wallpaper_image = 48; |
| 872 optional LoginScreenLocalesProto login_screen_locales = 49; | 872 optional LoginScreenLocalesProto login_screen_locales = 49; |
| 873 optional LoginScreenInputMethodsProto login_screen_input_methods = 50; | 873 optional LoginScreenInputMethodsProto login_screen_input_methods = 50; |
| 874 optional DeviceEcryptfsMigrationStrategyProto | 874 optional DeviceEcryptfsMigrationStrategyProto |
| 875 device_ecryptfs_migration_strategy = 51; | 875 device_ecryptfs_migration_strategy = 51; |
| 876 optional DeviceSecondFactorAuthenticationProto | 876 optional DeviceSecondFactorAuthenticationProto |
| 877 device_second_factor_authentication = 52; | 877 device_second_factor_authentication = 52; |
| 878 } | 878 } |
| OLD | NEW |