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

Side by Side 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: Previous patchset leaked information from another issue 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 unified diff | Download patch | Annotate | Revision Log
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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 139
140 // Causes the automation provider to reinitialize its IPC channel instead of 140 // Causes the automation provider to reinitialize its IPC channel instead of
141 // shutting down when a client disconnects. 141 // shutting down when a client disconnects.
142 const char kAutomationReinitializeOnChannelError[] = 142 const char kAutomationReinitializeOnChannelError[] =
143 "automation-reinitialize-on-channel-error"; 143 "automation-reinitialize-on-channel-error";
144 144
145 // Similar to kNoFirstRun, but also drops the First Run beacon so that first run 145 // Similar to kNoFirstRun, but also drops the First Run beacon so that first run
146 // will not occur in subsequent runs either. 146 // will not occur in subsequent runs either.
147 const char kCancelFirstRun[] = "cancel-first-run"; 147 const char kCancelFirstRun[] = "cancel-first-run";
148 148
149 // Certificate Transparency: Uses the provided log for checking Signed
150 // Certificate Timestamps provided with certificates.
151 // The switch's value is:
152 // log_description:log_key
153 // where log_description is a textual description of the log and log_key
154 // is a Base64'd DER-encoded SubjectPublicKeyInfo of the log's public key.
155 const char kCertificateTransparencyLog[] =
156 "certificate-transparency-log";
157
149 // How often (in seconds) to check for updates. Should only be used for testing 158 // How often (in seconds) to check for updates. Should only be used for testing
150 // purposes. 159 // purposes.
151 const char kCheckForUpdateIntervalSec[] = "check-for-update-interval"; 160 const char kCheckForUpdateIntervalSec[] = "check-for-update-interval";
152 161
153 // Checks the cloud print connector policy, informing the service process if 162 // Checks the cloud print connector policy, informing the service process if
154 // the policy is set to disallow the connector, then quits. 163 // the policy is set to disallow the connector, then quits.
155 const char kCheckCloudPrintConnectorPolicy[] = 164 const char kCheckCloudPrintConnectorPolicy[] =
156 "check-cloud-print-connector-policy"; 165 "check-cloud-print-connector-policy";
157 166
158 // Run Chrome in Chrome Frame mode. This means that Chrome expects to be run 167 // Run Chrome in Chrome Frame mode. This means that Chrome expects to be run
(...skipping 1475 matching lines...) Expand 10 before | Expand all | Expand 10 after
1634 1643
1635 // ----------------------------------------------------------------------------- 1644 // -----------------------------------------------------------------------------
1636 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1645 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1637 // 1646 //
1638 // You were going to just dump your switches here, weren't you? Instead, please 1647 // You were going to just dump your switches here, weren't you? Instead, please
1639 // put them in alphabetical order above, or in order inside the appropriate 1648 // put them in alphabetical order above, or in order inside the appropriate
1640 // ifdef at the bottom. The order should match the header. 1649 // ifdef at the bottom. The order should match the header.
1641 // ----------------------------------------------------------------------------- 1650 // -----------------------------------------------------------------------------
1642 1651
1643 } // namespace switches 1652 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698