Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(677)

Side by Side Diff: chrome/browser/policy/proto/chromeos/chrome_device_policy.proto

Issue 14715019: New policy to enable/disable HTTP-based downloads. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed extra whitespace Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698