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

Unified Diff: chrome/common/chrome_switches.cc

Issue 76443006: Certificate Transparency: Threading the CT verifier into the SSL client socket. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing compilation on non-NSS platforms Created 7 years, 1 month 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/common/chrome_switches.cc
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
index ee945c5eaf64672ec4de6dbad78221118757eed1..d9d639fb9a54fde17b0c7c0fd0e864c336bda14f 100644
--- a/chrome/common/chrome_switches.cc
+++ b/chrome/common/chrome_switches.cc
@@ -146,6 +146,15 @@ const char kAutomationReinitializeOnChannelError[] =
// will not occur in subsequent runs either.
const char kCancelFirstRun[] = "cancel-first-run";
+// Certificate Transparency: Uses the provided log for checking Signed
+// Certificate Timestamps provided with certificates.
+// The switch's value is:
+// log_description:log_key
wtc 2013/11/26 01:47:23 Nit: identing this line may make it look nicer.
Eran M. (Google) 2013/11/26 14:45:53 Done, indented argument explanation as well.
+// where log_description is a textual description of the log and log_key
+// is a Base64'd DER-encoded SubjectPublicKeyInfo of the log's public key.
+const char kCertificateTransparencyLog[] =
+ "certificate-transparency-log";
+
// How often (in seconds) to check for updates. Should only be used for testing
// purposes.
const char kCheckForUpdateIntervalSec[] = "check-for-update-interval";

Powered by Google App Engine
This is Rietveld 408576698