| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 extern const char kDisableImages[]; | 45 extern const char kDisableImages[]; |
| 46 extern const char kDisableJavaScript[]; | 46 extern const char kDisableJavaScript[]; |
| 47 extern const char kDisableJava[]; | 47 extern const char kDisableJava[]; |
| 48 extern const char kDisableLogging[]; | 48 extern const char kDisableLogging[]; |
| 49 extern const char kDisableMetrics[]; | 49 extern const char kDisableMetrics[]; |
| 50 extern const char kDisableNewTabFirstRun[]; | 50 extern const char kDisableNewTabFirstRun[]; |
| 51 extern const char kDisablePlugins[]; | 51 extern const char kDisablePlugins[]; |
| 52 extern const char kDisablePopupBlocking[]; | 52 extern const char kDisablePopupBlocking[]; |
| 53 extern const char kDisablePromptOnRepost[]; | 53 extern const char kDisablePromptOnRepost[]; |
| 54 extern const char kDisableSharedWorkers[]; | 54 extern const char kDisableSharedWorkers[]; |
| 55 extern const char kDisableSiteSpecificQuirks[]; |
| 55 extern const char kDisableSync[]; | 56 extern const char kDisableSync[]; |
| 56 extern const char kDisableWebResources[]; | 57 extern const char kDisableWebResources[]; |
| 57 extern const char kDisableWebSecurity[]; | 58 extern const char kDisableWebSecurity[]; |
| 58 extern const char kDisableWebSockets[]; | 59 extern const char kDisableWebSockets[]; |
| 59 extern const char kDisableXSSAuditor[]; | 60 extern const char kDisableXSSAuditor[]; |
| 60 extern const char kDiskCacheDir[]; | 61 extern const char kDiskCacheDir[]; |
| 61 extern const char kDiskCacheSize[]; | 62 extern const char kDiskCacheSize[]; |
| 62 extern const char kDnsLogDetails[]; | 63 extern const char kDnsLogDetails[]; |
| 63 extern const char kDnsPrefetchDisable[]; | 64 extern const char kDnsPrefetchDisable[]; |
| 64 extern const char kDomAutomationController[]; | 65 extern const char kDomAutomationController[]; |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 #ifndef NDEBUG | 208 #ifndef NDEBUG |
| 208 extern const char kGearsPluginPathOverride[]; | 209 extern const char kGearsPluginPathOverride[]; |
| 209 #endif | 210 #endif |
| 210 | 211 |
| 211 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 212 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 212 // alphabetical order, or in one of the ifdefs (also in order in each section). | 213 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 213 | 214 |
| 214 } // namespace switches | 215 } // namespace switches |
| 215 | 216 |
| 216 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 217 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |