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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 144 | 144 |
| 145 // Checks the cloud print connector policy, informing the service process if | 145 // Checks the cloud print connector policy, informing the service process if |
| 146 // the policy is set to disallow the connector, then quits. | 146 // the policy is set to disallow the connector, then quits. |
| 147 const char kCheckCloudPrintConnectorPolicy[] = | 147 const char kCheckCloudPrintConnectorPolicy[] = |
| 148 "check-cloud-print-connector-policy"; | 148 "check-cloud-print-connector-policy"; |
| 149 | 149 |
| 150 // Run Chrome in Chrome Frame mode. This means that Chrome expects to be run | 150 // Run Chrome in Chrome Frame mode. This means that Chrome expects to be run |
| 151 // as a dependent process of the Chrome Frame plugin. | 151 // as a dependent process of the Chrome Frame plugin. |
| 152 const char kChromeFrame[] = "chrome-frame"; | 152 const char kChromeFrame[] = "chrome-frame"; |
| 153 | 153 |
| 154 // Tells Chrome to delay shutdown (for a specified number of seconds) when a | |
| 155 // Chrome Frame automation channel is closed. | |
| 156 const char kChromeFrameShutdownDelay[] = "chrome-frame-shutdown-delay"; | |
|
grt (UTC plus 2)
2013/04/11 18:15:57
please remove this from chrome_frame/chrome_launch
robertshield
2013/04/12 19:49:07
Done.
| |
| 157 | |
| 158 // Tells chrome to load the specified version of chrome.dll on Windows. If this | 154 // Tells chrome to load the specified version of chrome.dll on Windows. If this |
| 159 // version cannot be loaded, Chrome will exit. | 155 // version cannot be loaded, Chrome will exit. |
| 160 const char kChromeVersion[] = "chrome-version"; | 156 const char kChromeVersion[] = "chrome-version"; |
| 161 | 157 |
| 162 // Comma-separated list of SSL cipher suites to disable. | 158 // Comma-separated list of SSL cipher suites to disable. |
| 163 const char kCipherSuiteBlacklist[] = "cipher-suite-blacklist"; | 159 const char kCipherSuiteBlacklist[] = "cipher-suite-blacklist"; |
| 164 | 160 |
| 165 // Clears the token service before using it. This allows simulating the | 161 // Clears the token service before using it. This allows simulating the |
| 166 // expiration of credentials during testing. | 162 // expiration of credentials during testing. |
| 167 const char kClearTokenService[] = "clear-token-service"; | 163 const char kClearTokenService[] = "clear-token-service"; |
| (...skipping 1538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1706 | 1702 |
| 1707 // ----------------------------------------------------------------------------- | 1703 // ----------------------------------------------------------------------------- |
| 1708 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1704 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1709 // | 1705 // |
| 1710 // You were going to just dump your switches here, weren't you? Instead, please | 1706 // You were going to just dump your switches here, weren't you? Instead, please |
| 1711 // put them in alphabetical order above, or in order inside the appropriate | 1707 // put them in alphabetical order above, or in order inside the appropriate |
| 1712 // ifdef at the bottom. The order should match the header. | 1708 // ifdef at the bottom. The order should match the header. |
| 1713 // ----------------------------------------------------------------------------- | 1709 // ----------------------------------------------------------------------------- |
| 1714 | 1710 |
| 1715 } // namespace switches | 1711 } // namespace switches |
| OLD | NEW |