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

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: Moving logs creation out of io_thread Created 7 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 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:
154 // log_description is a textual description of the log
155 // log_key is a Base64'd DER-encoded SubjectPublicKeyInfo of the log's
156 // public key.
157 const char kCertificateTransparencyLog[] =
158 "certificate-transparency-log";
159
149 // How often (in seconds) to check for updates. Should only be used for testing 160 // How often (in seconds) to check for updates. Should only be used for testing
150 // purposes. 161 // purposes.
151 const char kCheckForUpdateIntervalSec[] = "check-for-update-interval"; 162 const char kCheckForUpdateIntervalSec[] = "check-for-update-interval";
152 163
153 // Checks the cloud print connector policy, informing the service process if 164 // Checks the cloud print connector policy, informing the service process if
154 // the policy is set to disallow the connector, then quits. 165 // the policy is set to disallow the connector, then quits.
155 const char kCheckCloudPrintConnectorPolicy[] = 166 const char kCheckCloudPrintConnectorPolicy[] =
156 "check-cloud-print-connector-policy"; 167 "check-cloud-print-connector-policy";
157 168
158 // Run Chrome in Chrome Frame mode. This means that Chrome expects to be run 169 // Run Chrome in Chrome Frame mode. This means that Chrome expects to be run
(...skipping 1473 matching lines...) Expand 10 before | Expand all | Expand 10 after
1632 1643
1633 // ----------------------------------------------------------------------------- 1644 // -----------------------------------------------------------------------------
1634 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1645 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1635 // 1646 //
1636 // 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
1637 // 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
1638 // ifdef at the bottom. The order should match the header. 1649 // ifdef at the bottom. The order should match the header.
1639 // ----------------------------------------------------------------------------- 1650 // -----------------------------------------------------------------------------
1640 1651
1641 } // namespace switches 1652 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698