| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 kEnableLogging[]; | 86 extern const char kEnableLogging[]; |
| 87 extern const char kEnableMonitorProfile[]; | 87 extern const char kEnableMonitorProfile[]; |
| 88 extern const char kEnableNativeWebWorkers[]; | 88 extern const char kEnableNativeWebWorkers[]; |
| 89 #if defined(OS_MACOSX) | 89 #if defined(OS_MACOSX) |
| 90 // TODO(dspringer): remove this when NaCl x86-32 security issues are fixed | 90 // TODO(dspringer): remove this when NaCl x86-32 security issues are fixed |
| 91 extern const char kEnableNaClOnMac[]; | 91 extern const char kEnableNaClOnMac[]; |
| 92 #endif | 92 #endif |
| 93 extern const char kEnableNewAutoFill[]; | 93 extern const char kEnableNewAutoFill[]; |
| 94 extern const char kEnablePrivacyBlacklists[]; | 94 extern const char kEnablePrivacyBlacklists[]; |
| 95 extern const char kEnableRendererAccessibility[]; | 95 extern const char kEnableRendererAccessibility[]; |
| 96 extern const char kEnableSeccompSandbox[]; | 96 extern const char kDisableSeccompSandbox[]; |
| 97 extern const char kEnableSessionStorage[]; | 97 extern const char kEnableSessionStorage[]; |
| 98 extern const char kEnableStatsTable[]; | 98 extern const char kEnableStatsTable[]; |
| 99 extern const char kEnableSync[]; | 99 extern const char kEnableSync[]; |
| 100 extern const char kEnableSyncBookmarks[]; | 100 extern const char kEnableSyncBookmarks[]; |
| 101 extern const char kEnableSyncPreferences[]; | 101 extern const char kEnableSyncPreferences[]; |
| 102 extern const char kEnableUserDataDirProfiles[]; | 102 extern const char kEnableUserDataDirProfiles[]; |
| 103 extern const char kEnableVerticalTabs[]; | 103 extern const char kEnableVerticalTabs[]; |
| 104 extern const char kEnableWatchdog[]; | 104 extern const char kEnableWatchdog[]; |
| 105 extern const char kExperimentalSpellcheckerFeatures[]; | 105 extern const char kExperimentalSpellcheckerFeatures[]; |
| 106 extern const char kExplicitlyAllowedPorts[]; | 106 extern const char kExplicitlyAllowedPorts[]; |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 extern const char kGearsPluginPathOverride[]; | 248 extern const char kGearsPluginPathOverride[]; |
| 249 extern const char kInvalidateSyncLogin[]; | 249 extern const char kInvalidateSyncLogin[]; |
| 250 #endif | 250 #endif |
| 251 | 251 |
| 252 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 252 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 253 // alphabetical order, or in one of the ifdefs (also in order in each section). | 253 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 254 | 254 |
| 255 } // namespace switches | 255 } // namespace switches |
| 256 | 256 |
| 257 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 257 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |