| 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 // Defines the shared command-line switches used by code in the Chrome | 5 // Defines the shared command-line switches used by code in the Chrome |
| 6 // directory that don't have anywhere more specific to go. | 6 // directory that don't have anywhere more specific to go. |
| 7 | 7 |
| 8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ | 8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ |
| 9 #define CHROME_COMMON_CHROME_SWITCHES_H_ | 9 #define CHROME_COMMON_CHROME_SWITCHES_H_ |
| 10 | 10 |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 extern const char kProxyPacUrl[]; | 228 extern const char kProxyPacUrl[]; |
| 229 extern const char kProxyServer[]; | 229 extern const char kProxyServer[]; |
| 230 extern const char kPurgeAndSuspendTime[]; | 230 extern const char kPurgeAndSuspendTime[]; |
| 231 extern const char kQuicConnectionOptions[]; | 231 extern const char kQuicConnectionOptions[]; |
| 232 extern const char kQuicHostWhitelist[]; | 232 extern const char kQuicHostWhitelist[]; |
| 233 extern const char kQuicMaxPacketLength[]; | 233 extern const char kQuicMaxPacketLength[]; |
| 234 extern const char kQuicVersion[]; | 234 extern const char kQuicVersion[]; |
| 235 extern const char kRemoteDebuggingTargets[]; | 235 extern const char kRemoteDebuggingTargets[]; |
| 236 extern const char kRestoreLastSession[]; | 236 extern const char kRestoreLastSession[]; |
| 237 extern const char kSavePageAsMHTML[]; | 237 extern const char kSavePageAsMHTML[]; |
| 238 extern const char kSbDisableAutoUpdate[]; | |
| 239 extern const char kSbDisableDownloadProtection[]; | |
| 240 extern const char kSbDisableExtensionBlacklist[]; | |
| 241 extern const char kSbManualDownloadBlacklist[]; | |
| 242 extern const char kServiceProcess[]; | 238 extern const char kServiceProcess[]; |
| 243 extern const char kShowAppList[]; | 239 extern const char kShowAppList[]; |
| 244 extern const char kSilentDebuggerExtensionAPI[]; | 240 extern const char kSilentDebuggerExtensionAPI[]; |
| 245 extern const char kSilentLaunch[]; | 241 extern const char kSilentLaunch[]; |
| 246 extern const char kSimulateCriticalUpdate[]; | 242 extern const char kSimulateCriticalUpdate[]; |
| 247 extern const char kSimulateElevatedRecovery[]; | 243 extern const char kSimulateElevatedRecovery[]; |
| 248 extern const char kSimulateOutdated[]; | 244 extern const char kSimulateOutdated[]; |
| 249 extern const char kSimulateOutdatedNoAU[]; | 245 extern const char kSimulateOutdatedNoAU[]; |
| 250 extern const char kSimulateUpgrade[]; | 246 extern const char kSimulateUpgrade[]; |
| 251 extern const char kSpeculativeResourcePrefetching[]; | 247 extern const char kSpeculativeResourcePrefetching[]; |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 #if defined(OS_WIN) | 399 #if defined(OS_WIN) |
| 404 bool GDITextPrintingEnabled(); | 400 bool GDITextPrintingEnabled(); |
| 405 #endif | 401 #endif |
| 406 | 402 |
| 407 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 403 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 408 // alphabetical order, or in one of the ifdefs (also in order in each section). | 404 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 409 | 405 |
| 410 } // namespace switches | 406 } // namespace switches |
| 411 | 407 |
| 412 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 408 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |