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

Unified Diff: chrome/browser/io_thread.cc

Issue 795013003: Certificate Transparency: Remove SSLWatcher's Alpha log. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
« no previous file with comments | « no previous file | net/cert/cert_policy_enforcer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/io_thread.cc
diff --git a/chrome/browser/io_thread.cc b/chrome/browser/io_thread.cc
index 094d043fadbde49b79e8441815d93fd4076f0742..f88e506700efe921e35196f6f9fa07f3faf73080 100644
--- a/chrome/browser/io_thread.cc
+++ b/chrome/browser/io_thread.cc
@@ -658,9 +658,9 @@ void IOThread::InitAsync() {
net::CertPolicyEnforcer* policy_enforcer = NULL;
// TODO(eranm): Control with Finch, crbug.com/437766
if (command_line.HasSwitch(switches::kRequireCTForEV)) {
- policy_enforcer = new net::CertPolicyEnforcer(kNumKnownCTLogs, true);
+ policy_enforcer = new net::CertPolicyEnforcer(true);
} else {
- policy_enforcer = new net::CertPolicyEnforcer(kNumKnownCTLogs, false);
+ policy_enforcer = new net::CertPolicyEnforcer(false);
}
globals_->cert_policy_enforcer.reset(policy_enforcer);
« no previous file with comments | « no previous file | net/cert/cert_policy_enforcer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698