Chromium Code Reviews| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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;... |
|
Lei Zhang
2014/01/27 19:46:06
Does |log_description| usually contain spaces? If
Eran M. (Google)
2014/01/28 09:13:02
Done - switched to a comma. |log_description| can
| |
| 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 semicolon. | |
| 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 Loading... | |
| 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 |
| OLD | NEW |