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

Side by Side 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: Addressing review comments 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 unified diff | Download patch | Annotate | Revision Log
« chrome/browser/io_thread.cc ('K') | « chrome/browser/io_thread.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 136
137 // Causes the automation provider to reinitialize its IPC channel instead of 137 // Causes the automation provider to reinitialize its IPC channel instead of
138 // shutting down when a client disconnects. 138 // shutting down when a client disconnects.
139 const char kAutomationReinitializeOnChannelError[] = 139 const char kAutomationReinitializeOnChannelError[] =
140 "automation-reinitialize-on-channel-error"; 140 "automation-reinitialize-on-channel-error";
141 141
142 // Similar to kNoFirstRun, but also drops the First Run beacon so that first run 142 // Similar to kNoFirstRun, but also drops the First Run beacon so that first run
143 // will not occur in subsequent runs either. 143 // will not occur in subsequent runs either.
144 const char kCancelFirstRun[] = "cancel-first-run"; 144 const char kCancelFirstRun[] = "cancel-first-run";
145 145
146 // Certificate Transparency: Uses the provided log for checking Signed 146 // Certificate Transparency: Uses the provided log(s) for checking Signed
147 // Certificate Timestamps provided with certificates. 147 // Certificate Timestamps provided with certificates.
148 // The switch's value is: 148 // The switch's value is:
149 // log_description:log_key 149 // log_description:log_key,log_description:log_key,...
150 // where: 150 // where
151 // log_description is a textual description of the log 151 // log_description is a textual description of the log.
152 // log_key is a Base64'd DER-encoded SubjectPublicKeyInfo of the log's 152 // log_key is a Base64'd DER-encoded SubjectPublicKeyInfo of the log's
153 // public key. 153 // public key.
154 // Multiple logs can be specified by repeating description:key pairs,
155 // separated by a comma.
154 const char kCertificateTransparencyLog[] = 156 const char kCertificateTransparencyLog[] =
155 "certificate-transparency-log"; 157 "certificate-transparency-log";
156 158
157 // How often (in seconds) to check for updates. Should only be used for testing 159 // How often (in seconds) to check for updates. Should only be used for testing
158 // purposes. 160 // purposes.
159 const char kCheckForUpdateIntervalSec[] = "check-for-update-interval"; 161 const char kCheckForUpdateIntervalSec[] = "check-for-update-interval";
160 162
161 // Checks the cloud print connector policy, informing the service process if 163 // Checks the cloud print connector policy, informing the service process if
162 // the policy is set to disallow the connector, then quits. 164 // the policy is set to disallow the connector, then quits.
163 const char kCheckCloudPrintConnectorPolicy[] = 165 const char kCheckCloudPrintConnectorPolicy[] =
(...skipping 1526 matching lines...) Expand 10 before | Expand all | Expand 10 after
1690 1692
1691 // ----------------------------------------------------------------------------- 1693 // -----------------------------------------------------------------------------
1692 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1694 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1693 // 1695 //
1694 // You were going to just dump your switches here, weren't you? Instead, please 1696 // You were going to just dump your switches here, weren't you? Instead, please
1695 // put them in alphabetical order above, or in order inside the appropriate 1697 // put them in alphabetical order above, or in order inside the appropriate
1696 // ifdef at the bottom. The order should match the header. 1698 // ifdef at the bottom. The order should match the header.
1697 // ----------------------------------------------------------------------------- 1699 // -----------------------------------------------------------------------------
1698 1700
1699 } // namespace switches 1701 } // namespace switches
OLDNEW
« chrome/browser/io_thread.cc ('K') | « chrome/browser/io_thread.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698