OLD | NEW |
---|---|
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 Loading... | |
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 | |
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.
| |
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 1465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1624 | 1633 |
1625 // ----------------------------------------------------------------------------- | 1634 // ----------------------------------------------------------------------------- |
1626 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1635 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1627 // | 1636 // |
1628 // You were going to just dump your switches here, weren't you? Instead, please | 1637 // You were going to just dump your switches here, weren't you? Instead, please |
1629 // put them in alphabetical order above, or in order inside the appropriate | 1638 // put them in alphabetical order above, or in order inside the appropriate |
1630 // ifdef at the bottom. The order should match the header. | 1639 // ifdef at the bottom. The order should match the header. |
1631 // ----------------------------------------------------------------------------- | 1640 // ----------------------------------------------------------------------------- |
1632 | 1641 |
1633 } // namespace switches | 1642 } // namespace switches |
OLD | NEW |