| OLD | NEW |
| 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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 // should be logged in automatically. Should be equal to one of the | 306 // should be logged in automatically. Should be equal to one of the |
| 307 // ids in DeviceLocalAccountInfoProto. | 307 // ids in DeviceLocalAccountInfoProto. |
| 308 optional string auto_login_id = 2; | 308 optional string auto_login_id = 2; |
| 309 | 309 |
| 310 // The amount of time, in milliseconds, that should elapse at the signin | 310 // The amount of time, in milliseconds, that should elapse at the signin |
| 311 // screen without user interaction before automatically logging in. | 311 // screen without user interaction before automatically logging in. |
| 312 optional int64 auto_login_delay = 3; | 312 optional int64 auto_login_delay = 3; |
| 313 | 313 |
| 314 // Whether the keyboard shortcut to prevent zero-delay auto-login should be | 314 // Whether the keyboard shortcut to prevent zero-delay auto-login should be |
| 315 // enabled or not. If this keyboard shortcut is engaged, the auto-login will | 315 // enabled or not. If this keyboard shortcut is engaged, the auto-login will |
| 316 // be delayed by 3 minutes so administrators can log in or make configuration | 316 // be delayed by 3 seconds so administrators can log in or make configuration |
| 317 // changes. | 317 // changes. |
| 318 optional bool enable_auto_login_bailout = 4 [default = true]; | 318 optional bool enable_auto_login_bailout = 4 [default = true]; |
| 319 |
| 320 // Whether network configuration should be offered or not when the device |
| 321 // does not have access to the Internet. If the policy is omitted or set to |
| 322 // true, the network configuration will be offered. Otherwise, only an error |
| 323 // message is displayed. |
| 324 // Note: If both this policy and enable_auto_login_bailout policy above is |
| 325 // set to false, there are chances that the device might become totally |
| 326 // unusable when there is no Internet access and has to go through the |
| 327 // recovery process. |
| 328 optional bool prompt_for_network_when_offline = 5 [default = true]; |
| 319 } | 329 } |
| 320 | 330 |
| 321 message AllowRedeemChromeOsRegistrationOffersProto { | 331 message AllowRedeemChromeOsRegistrationOffersProto { |
| 322 // Chrome OS Registration service provides way for chromeos device users | 332 // Chrome OS Registration service provides way for chromeos device users |
| 323 // to redeem electronic offers provided by service provider. | 333 // to redeem electronic offers provided by service provider. |
| 324 // This value determines if users are allowed to redeem offers through | 334 // This value determines if users are allowed to redeem offers through |
| 325 // Chrome OS Registration service. | 335 // Chrome OS Registration service. |
| 326 optional bool allow_redeem_offers = 1 [default = true]; | 336 optional bool allow_redeem_offers = 1 [default = true]; |
| 327 } | 337 } |
| 328 | 338 |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 566 optional StartUpFlagsProto start_up_flags = 23; | 576 optional StartUpFlagsProto start_up_flags = 23; |
| 567 optional UptimeLimitProto uptime_limit = 24; | 577 optional UptimeLimitProto uptime_limit = 24; |
| 568 optional VariationsParameterProto variations_parameter = 25; | 578 optional VariationsParameterProto variations_parameter = 25; |
| 569 optional AttestationSettingsProto attestation_settings = 26; | 579 optional AttestationSettingsProto attestation_settings = 26; |
| 570 optional AccessibilitySettingsProto accessibility_settings = 27; | 580 optional AccessibilitySettingsProto accessibility_settings = 27; |
| 571 optional SupervisedUsersSettingsProto supervised_users_settings = 28; | 581 optional SupervisedUsersSettingsProto supervised_users_settings = 28; |
| 572 optional LoginScreenPowerManagementProto login_screen_power_management = 29; | 582 optional LoginScreenPowerManagementProto login_screen_power_management = 29; |
| 573 optional SystemUse24HourClockProto use_24hour_clock = 30; | 583 optional SystemUse24HourClockProto use_24hour_clock = 30; |
| 574 optional AutoCleanupSettigsProto auto_clean_up_settings = 31; | 584 optional AutoCleanupSettigsProto auto_clean_up_settings = 31; |
| 575 } | 585 } |
| OLD | NEW |