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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 | 128 |
129 // How often (in seconds) to check for updates. Should only be used for testing | 129 // How often (in seconds) to check for updates. Should only be used for testing |
130 // purposes. | 130 // purposes. |
131 const char kCheckForUpdateIntervalSec[] = "check-for-update-interval"; | 131 const char kCheckForUpdateIntervalSec[] = "check-for-update-interval"; |
132 | 132 |
133 // Checks the cloud print connector policy, informing the service process if | 133 // Checks the cloud print connector policy, informing the service process if |
134 // the policy is set to disallow the connector, then quits. | 134 // the policy is set to disallow the connector, then quits. |
135 const char kCheckCloudPrintConnectorPolicy[] = | 135 const char kCheckCloudPrintConnectorPolicy[] = |
136 "check-cloud-print-connector-policy"; | 136 "check-cloud-print-connector-policy"; |
137 | 137 |
| 138 // Tells Chrome to delay shutdown (for a specified number of seconds) when a |
| 139 // Chrome Frame automation channel is closed. |
| 140 const char kChromeFrameShutdownDelay[] = "chrome-frame-shutdown-delay"; |
| 141 |
138 // Tells chrome to load the specified version of chrome.dll on Windows. If this | 142 // Tells chrome to load the specified version of chrome.dll on Windows. If this |
139 // version cannot be loaded, Chrome will exit. | 143 // version cannot be loaded, Chrome will exit. |
140 const char kChromeVersion[] = "chrome-version"; | 144 const char kChromeVersion[] = "chrome-version"; |
141 | 145 |
142 // Comma-separated list of SSL cipher suites to disable. | 146 // Comma-separated list of SSL cipher suites to disable. |
143 const char kCipherSuiteBlacklist[] = "cipher-suite-blacklist"; | 147 const char kCipherSuiteBlacklist[] = "cipher-suite-blacklist"; |
144 | 148 |
145 // Clears the token service before using it. This allows simulating the | 149 // Clears the token service before using it. This allows simulating the |
146 // expiration of credentials during testing. | 150 // expiration of credentials during testing. |
147 const char kClearTokenService[] = "clear-token-service"; | 151 const char kClearTokenService[] = "clear-token-service"; |
(...skipping 1204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1352 | 1356 |
1353 // ----------------------------------------------------------------------------- | 1357 // ----------------------------------------------------------------------------- |
1354 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1358 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1355 // | 1359 // |
1356 // You were going to just dump your switches here, weren't you? Instead, please | 1360 // You were going to just dump your switches here, weren't you? Instead, please |
1357 // put them in alphabetical order above, or in order inside the appropriate | 1361 // put them in alphabetical order above, or in order inside the appropriate |
1358 // ifdef at the bottom. The order should match the header. | 1362 // ifdef at the bottom. The order should match the header. |
1359 // ----------------------------------------------------------------------------- | 1363 // ----------------------------------------------------------------------------- |
1360 | 1364 |
1361 } // namespace switches | 1365 } // namespace switches |
OLD | NEW |