| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 extern const char kEnableMonitorProfile[]; | 76 extern const char kEnableMonitorProfile[]; |
| 77 extern const char kEnableNativeWebWorkers[]; | 77 extern const char kEnableNativeWebWorkers[]; |
| 78 extern const char kEnableNewAutoFill[]; | 78 extern const char kEnableNewAutoFill[]; |
| 79 extern const char kEnableRemoteFonts[]; | 79 extern const char kEnableRemoteFonts[]; |
| 80 extern const char kEnableRendererAccessibility[]; | 80 extern const char kEnableRendererAccessibility[]; |
| 81 extern const char kEnableSeccompSandbox[]; | 81 extern const char kEnableSeccompSandbox[]; |
| 82 extern const char kEnableSessionStorage[]; | 82 extern const char kEnableSessionStorage[]; |
| 83 extern const char kEnableStatsTable[]; | 83 extern const char kEnableStatsTable[]; |
| 84 extern const char kEnableSync[]; | 84 extern const char kEnableSync[]; |
| 85 extern const char kEnableUserDataDirProfiles[]; | 85 extern const char kEnableUserDataDirProfiles[]; |
| 86 extern const char kEnableUserScripts[]; | |
| 87 extern const char kEnableWatchdog[]; | 86 extern const char kEnableWatchdog[]; |
| 88 extern const char kExperimentalSpellcheckerFeatures[]; | 87 extern const char kExperimentalSpellcheckerFeatures[]; |
| 89 extern const char kExplicitlyAllowedPorts[]; | 88 extern const char kExplicitlyAllowedPorts[]; |
| 90 extern const char kExtensionProcess[]; | 89 extern const char kExtensionProcess[]; |
| 91 extern const char kExtensionsUpdateFrequency[]; | 90 extern const char kExtensionsUpdateFrequency[]; |
| 92 extern const char kFileDescriptorLimit[]; | 91 extern const char kFileDescriptorLimit[]; |
| 93 extern const char kFirstRun[]; | 92 extern const char kFirstRun[]; |
| 94 extern const char kForceFieldTestNameAndValue[]; | 93 extern const char kForceFieldTestNameAndValue[]; |
| 95 extern const char kHideIcons[]; | 94 extern const char kHideIcons[]; |
| 96 extern const char kHomePage[]; | 95 extern const char kHomePage[]; |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 #ifndef NDEBUG | 207 #ifndef NDEBUG |
| 209 extern const char kGearsPluginPathOverride[]; | 208 extern const char kGearsPluginPathOverride[]; |
| 210 #endif | 209 #endif |
| 211 | 210 |
| 212 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 211 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 213 // alphabetical order, or in one of the ifdefs (also in order in each section). | 212 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 214 | 213 |
| 215 } // namespace switches | 214 } // namespace switches |
| 216 | 215 |
| 217 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 216 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |