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

Unified Diff: chrome/browser/extensions/updater/chrome_update_client_config.cc

Issue 1740333002: Allow fallback from https to http for component update checks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/updater/chrome_update_client_config.cc
diff --git a/chrome/browser/extensions/updater/chrome_update_client_config.cc b/chrome/browser/extensions/updater/chrome_update_client_config.cc
index d68ce225a3c31dd701d61efc27d2aa0aef6d0144..55bc1687ee80963c56c8d5630bd39698d23b1436 100644
--- a/chrome/browser/extensions/updater/chrome_update_client_config.cc
+++ b/chrome/browser/extensions/updater/chrome_update_client_config.cc
@@ -12,11 +12,13 @@
namespace extensions {
+// For privacy reasons, requires encryption of the component updater
+// communication with the update backend.
ChromeUpdateClientConfig::ChromeUpdateClientConfig(
content::BrowserContext* context)
: impl_(base::CommandLine::ForCurrentProcess(),
- context->GetRequestContext()) {
-}
+ context->GetRequestContext(),
+ true) {}
asargent_no_longer_on_chrome 2016/02/29 18:26:09 please include a comment hinting at the meaning of
int ChromeUpdateClientConfig::InitialDelay() const {
return impl_.InitialDelay();

Powered by Google App Engine
This is Rietveld 408576698