| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 all the command-line switches used by Chrome. | 5 // Defines all the command-line switches used by Chrome. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ | 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ |
| 8 #define CHROME_COMMON_CHROME_SWITCHES_H_ | 8 #define CHROME_COMMON_CHROME_SWITCHES_H_ |
| 9 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 extern const char kProxyBypassList[]; | 86 extern const char kProxyBypassList[]; |
| 87 extern const char kProxyAutoDetect[]; | 87 extern const char kProxyAutoDetect[]; |
| 88 extern const char kProxyPacUrl[]; | 88 extern const char kProxyPacUrl[]; |
| 89 extern const char kWinHttpProxyResolver[]; | 89 extern const char kWinHttpProxyResolver[]; |
| 90 extern const char kDebugPrint[]; | 90 extern const char kDebugPrint[]; |
| 91 extern const char kPrint[]; | 91 extern const char kPrint[]; |
| 92 | 92 |
| 93 extern const char kDnsLogDetails[]; | 93 extern const char kDnsLogDetails[]; |
| 94 extern const char kDnsPrefetchDisable[]; | 94 extern const char kDnsPrefetchDisable[]; |
| 95 | 95 |
| 96 #if defined(OS_LINUX) |
| 97 extern const char kAutoSSLClientAuth[]; |
| 98 #endif |
| 99 |
| 96 extern const char kDisableDevTools[]; | 100 extern const char kDisableDevTools[]; |
| 97 extern const char kAlwaysEnableDevTools[]; | 101 extern const char kAlwaysEnableDevTools[]; |
| 98 extern const char kEnableExtensionTimelineApi[]; | 102 extern const char kEnableExtensionTimelineApi[]; |
| 99 | 103 |
| 100 extern const char kTabCountToLoadOnSessionRestore[]; | 104 extern const char kTabCountToLoadOnSessionRestore[]; |
| 101 | 105 |
| 102 extern const char kMemoryProfiling[]; | 106 extern const char kMemoryProfiling[]; |
| 103 extern const char kPurgeMemoryButton[]; | 107 extern const char kPurgeMemoryButton[]; |
| 104 | 108 |
| 105 extern const char kEnableFileCookies[]; | 109 extern const char kEnableFileCookies[]; |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 extern const char kActivateOnLaunch[]; | 257 extern const char kActivateOnLaunch[]; |
| 254 extern const char kEnableWebSockets[]; | 258 extern const char kEnableWebSockets[]; |
| 255 | 259 |
| 256 extern const char kEnableExperimentalWebGL[]; | 260 extern const char kEnableExperimentalWebGL[]; |
| 257 | 261 |
| 258 extern const char kEnableDesktopNotifications[]; | 262 extern const char kEnableDesktopNotifications[]; |
| 259 | 263 |
| 260 } // namespace switches | 264 } // namespace switches |
| 261 | 265 |
| 262 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 266 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |