| 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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 optional bool http_downloads_enabled = 7 [default = false]; | 207 optional bool http_downloads_enabled = 7 [default = false]; |
| 208 | 208 |
| 209 // True if the device should reboot automatically when an update has been | 209 // True if the device should reboot automatically when an update has been |
| 210 // applied and a reboot is required to complete the update process. | 210 // applied and a reboot is required to complete the update process. |
| 211 // | 211 // |
| 212 // Note: Currently, automatic reboots are only enabled while the login screen | 212 // Note: Currently, automatic reboots are only enabled while the login screen |
| 213 // is being shown or a kiosk app session is in progress. This will change in | 213 // is being shown or a kiosk app session is in progress. This will change in |
| 214 // the future and the policy will always apply, regardless of whether a | 214 // the future and the policy will always apply, regardless of whether a |
| 215 // session of any particular type is in progress or not. | 215 // session of any particular type is in progress or not. |
| 216 optional bool reboot_after_update = 8; | 216 optional bool reboot_after_update = 8; |
| 217 |
| 218 // True if AU payloads may be shared with and consumed from other devices |
| 219 // on the LAN, using p2p. False otherwise. |
| 220 optional bool p2p_enabled = 9 [default = false]; |
| 217 } | 221 } |
| 218 | 222 |
| 219 message StartUpUrlsProto { | 223 message StartUpUrlsProto { |
| 220 // Specifies the URLs to be loaded on login to the anonymous account used if | 224 // Specifies the URLs to be loaded on login to the anonymous account used if |
| 221 // the device is in RETAIL mode. | 225 // the device is in RETAIL mode. |
| 222 repeated string start_up_urls = 1; | 226 repeated string start_up_urls = 1; |
| 223 } | 227 } |
| 224 | 228 |
| 225 message SystemTimezoneProto { | 229 message SystemTimezoneProto { |
| 226 // Specifies an owner-determined timezone that applies to the login screen and | 230 // Specifies an owner-determined timezone that applies to the login screen and |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 551 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; | 555 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; |
| 552 optional StartUpFlagsProto start_up_flags = 23; | 556 optional StartUpFlagsProto start_up_flags = 23; |
| 553 optional UptimeLimitProto uptime_limit = 24; | 557 optional UptimeLimitProto uptime_limit = 24; |
| 554 optional VariationsParameterProto variations_parameter = 25; | 558 optional VariationsParameterProto variations_parameter = 25; |
| 555 optional AttestationSettingsProto attestation_settings = 26; | 559 optional AttestationSettingsProto attestation_settings = 26; |
| 556 optional AccessibilitySettingsProto accessibility_settings = 27; | 560 optional AccessibilitySettingsProto accessibility_settings = 27; |
| 557 optional SupervisedUsersSettingsProto supervised_users_settings = 28; | 561 optional SupervisedUsersSettingsProto supervised_users_settings = 28; |
| 558 optional LoginScreenPowerManagementProto login_screen_power_management = 29; | 562 optional LoginScreenPowerManagementProto login_screen_power_management = 29; |
| 559 optional SystemUse24HourClockProto use_24hour_clock = 30; | 563 optional SystemUse24HourClockProto use_24hour_clock = 30; |
| 560 } | 564 } |
| OLD | NEW |