| 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 // The types of connections that are OK to use for OS updates. OS updates | 195 // The types of connections that are OK to use for OS updates. OS updates |
| 196 // potentially put heavy strain on the connection due to their size and may | 196 // potentially put heavy strain on the connection due to their size and may |
| 197 // incur additional cost. Therefore, they are by default not enabled for | 197 // incur additional cost. Therefore, they are by default not enabled for |
| 198 // connection types that are considered expensive, which include WiMax, | 198 // connection types that are considered expensive, which include WiMax, |
| 199 // Bluetooth and Cellular at the moment. | 199 // Bluetooth and Cellular at the moment. |
| 200 repeated ConnectionType allowed_connection_types = 5; | 200 repeated ConnectionType allowed_connection_types = 5; |
| 201 | 201 |
| 202 // True if the device should reboot automatically when an update has been | 202 // True if the device should reboot automatically when an update has been |
| 203 // applied and a reboot is required to complete the update process. | 203 // applied and a reboot is required to complete the update process. |
| 204 optional bool reboot_after_update = 6; | 204 optional bool reboot_after_update = 6; |
| 205 |
| 206 // True if AU payloads can be downloaded via HTTP. False otherwise. |
| 207 optional bool http_downloads_enabled = 7 [default = false]; |
| 205 } | 208 } |
| 206 | 209 |
| 207 message StartUpUrlsProto { | 210 message StartUpUrlsProto { |
| 208 // Specifies the URLs to be loaded on login to the anonymous account used if | 211 // Specifies the URLs to be loaded on login to the anonymous account used if |
| 209 // the device is in RETAIL mode. | 212 // the device is in RETAIL mode. |
| 210 repeated string start_up_urls = 1; | 213 repeated string start_up_urls = 1; |
| 211 } | 214 } |
| 212 | 215 |
| 213 message SystemTimezoneProto { | 216 message SystemTimezoneProto { |
| 214 // Specifies an owner-determined timezone that applies to the login screen and | 217 // Specifies an owner-determined timezone that applies to the login screen and |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 optional StartUpUrlsProto start_up_urls = 18; | 352 optional StartUpUrlsProto start_up_urls = 18; |
| 350 optional PinnedAppsProto pinned_apps = 19; | 353 optional PinnedAppsProto pinned_apps = 19; |
| 351 optional SystemTimezoneProto system_timezone = 20; | 354 optional SystemTimezoneProto system_timezone = 20; |
| 352 optional DeviceLocalAccountsProto device_local_accounts = 21; | 355 optional DeviceLocalAccountsProto device_local_accounts = 21; |
| 353 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; | 356 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; |
| 354 optional StartUpFlagsProto start_up_flags = 23; | 357 optional StartUpFlagsProto start_up_flags = 23; |
| 355 optional UptimeLimitProto uptime_limit = 24; | 358 optional UptimeLimitProto uptime_limit = 24; |
| 356 optional VariationsParameterProto variations_parameter = 25; | 359 optional VariationsParameterProto variations_parameter = 25; |
| 357 optional AttestationSettingsProto attestation_settings = 26; | 360 optional AttestationSettingsProto attestation_settings = 26; |
| 358 } | 361 } |
| OLD | NEW |