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

Unified Diff: chrome/browser/net/crl_set_fetcher.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, 8 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/net/crl_set_fetcher.cc
diff --git a/chrome/browser/net/crl_set_fetcher.cc b/chrome/browser/net/crl_set_fetcher.cc
index f2d9caf4bd3e970ad02f0b39163264dabde8c133..02454339c011824b833e2c854cfc1c41bb9ee6a1 100644
--- a/chrome/browser/net/crl_set_fetcher.cc
+++ b/chrome/browser/net/crl_set_fetcher.cc
@@ -144,7 +144,8 @@ void CRLSetFetcher::RegisterComponent(uint32_t sequence_of_loaded_crl) {
component.installer = this;
component.name = "CRLSet";
component.version = Version(base::UintToString(sequence_of_loaded_crl));
- component.allow_background_download = false;
+ component.allows_background_download = false;
+ component.requires_network_encryption = false;
if (!component.version.IsValid()) {
NOTREACHED();
component.version = Version("0");

Powered by Google App Engine
This is Rietveld 408576698