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

Unified Diff: chrome/common/chrome_switches.cc

Issue 148283002: Certificate Transparency: Enhance the CT log flag for multiple logs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Using const reference Created 6 years, 11 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
« no previous file with comments | « chrome/browser/io_thread.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/chrome_switches.cc
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
index 74bca104b55c77e63fc92bcd4fdcb51d7d1a7b37..ae6ad9fd996d5b7a7891a97257a5d1f321c23cc5 100644
--- a/chrome/common/chrome_switches.cc
+++ b/chrome/common/chrome_switches.cc
@@ -143,14 +143,16 @@ 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 Transparency: Uses the provided log(s) for checking Signed
// Certificate Timestamps provided with certificates.
// The switch's value is:
-// log_description:log_key
-// where:
-// log_description is a textual description of the log
+// log_description:log_key,log_description:log_key,...
+// where
+// log_description is a textual description of the log.
// log_key is a Base64'd DER-encoded SubjectPublicKeyInfo of the log's
// public key.
+// Multiple logs can be specified by repeating description:key pairs,
+// separated by a comma.
const char kCertificateTransparencyLog[] =
"certificate-transparency-log";
« no previous file with comments | « chrome/browser/io_thread.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698