summaryrefslogtreecommitdiffstats
path: root/components/component_updater
diff options
context:
space:
mode:
authorsorin <sorin@chromium.org>2015-11-12 18:11:16 -0800
committerCommit bot <commit-bot@chromium.org>2015-11-13 02:12:23 +0000
commitbc5f2dcb172d1fae9a791b37248bf880db51289d (patch)
treead96a9d8e7940b44940b8011097df400c037e62b /components/component_updater
parentd861e6b0679ba90c1c75586c519a010dd2de905a (diff)
downloadchromium_src-bc5f2dcb172d1fae9a791b37248bf880db51289d.zip
chromium_src-bc5f2dcb172d1fae9a791b37248bf880db51289d.tar.gz
chromium_src-bc5f2dcb172d1fae9a791b37248bf880db51289d.tar.bz2
Disable BITS downloader until stability issues due to crbug.com/475872
are resolved. https://crrev.com/5081941b99d37952e1c60c9cb24257369d9c6416 has been reverted as a suspect for crbug.com/475872 We will try to reland after the canary has been stabilized, and will try to create a Finch experiment to assess stability of the proposed changelist. R=waffles@chromium.org BUG=552028 Review URL: https://codereview.chromium.org/1441223002 Cr-Commit-Position: refs/heads/master@{#359476}
Diffstat (limited to 'components/component_updater')
-rw-r--r--components/component_updater/configurator_impl.cc7
1 files changed, 2 insertions, 5 deletions
diff --git a/components/component_updater/configurator_impl.cc b/components/component_updater/configurator_impl.cc
index fb8f1db..ed7daf4 100644
--- a/components/component_updater/configurator_impl.cc
+++ b/components/component_updater/configurator_impl.cc
@@ -109,12 +109,9 @@ ConfiguratorImpl::ConfiguratorImpl(
pings_enabled_ = !HasSwitchValue(switch_values, kSwitchDisablePings);
deltas_enabled_ = !HasSwitchValue(switch_values, kSwitchDisableDeltaUpdates);
-#if defined(OS_WIN)
- background_downloads_enabled_ =
- !HasSwitchValue(switch_values, kSwitchDisableBackgroundDownloads);
-#else
+ // Disable BITS on all platforms in all cases until crbug.com/475872 is
+ // resolved.
background_downloads_enabled_ = false;
-#endif
const std::string switch_url_source =
GetSwitchArgument(switch_values, kSwitchUrlSource);