| 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 | 159 |
| 160 // 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 |
| 161 // purposes. | 161 // purposes. |
| 162 const char kCheckForUpdateIntervalSec[] = "check-for-update-interval"; | 162 const char kCheckForUpdateIntervalSec[] = "check-for-update-interval"; |
| 163 | 163 |
| 164 // Checks the cloud print connector policy, informing the service process if | 164 // Checks the cloud print connector policy, informing the service process if |
| 165 // the policy is set to disallow the connector, then quits. | 165 // the policy is set to disallow the connector, then quits. |
| 166 const char kCheckCloudPrintConnectorPolicy[] = | 166 const char kCheckCloudPrintConnectorPolicy[] = |
| 167 "check-cloud-print-connector-policy"; | 167 "check-cloud-print-connector-policy"; |
| 168 | 168 |
| 169 // Tells chrome to load the specified version of chrome.dll on Windows. If this | |
| 170 // version cannot be loaded, Chrome will exit. | |
| 171 const char kChromeVersion[] = "chrome-version"; | |
| 172 | |
| 173 // Comma-separated list of SSL cipher suites to disable. | 169 // Comma-separated list of SSL cipher suites to disable. |
| 174 const char kCipherSuiteBlacklist[] = "cipher-suite-blacklist"; | 170 const char kCipherSuiteBlacklist[] = "cipher-suite-blacklist"; |
| 175 | 171 |
| 176 // Clears the token service before using it. This allows simulating the | 172 // Clears the token service before using it. This allows simulating the |
| 177 // expiration of credentials during testing. | 173 // expiration of credentials during testing. |
| 178 const char kClearTokenService[] = "clear-token-service"; | 174 const char kClearTokenService[] = "clear-token-service"; |
| 179 | 175 |
| 180 // Used with kCloudPrintFile. Tells Chrome to delete the file when finished | 176 // Used with kCloudPrintFile. Tells Chrome to delete the file when finished |
| 181 // displaying the print dialog. | 177 // displaying the print dialog. |
| 182 const char kCloudPrintDeleteFile[] = "cloud-print-delete-file"; | 178 const char kCloudPrintDeleteFile[] = "cloud-print-delete-file"; |
| (...skipping 1481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1664 | 1660 |
| 1665 // ----------------------------------------------------------------------------- | 1661 // ----------------------------------------------------------------------------- |
| 1666 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1662 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1667 // | 1663 // |
| 1668 // You were going to just dump your switches here, weren't you? Instead, please | 1664 // You were going to just dump your switches here, weren't you? Instead, please |
| 1669 // put them in alphabetical order above, or in order inside the appropriate | 1665 // put them in alphabetical order above, or in order inside the appropriate |
| 1670 // ifdef at the bottom. The order should match the header. | 1666 // ifdef at the bottom. The order should match the header. |
| 1671 // ----------------------------------------------------------------------------- | 1667 // ----------------------------------------------------------------------------- |
| 1672 | 1668 |
| 1673 } // namespace switches | 1669 } // namespace switches |
| OLD | NEW |