| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 // TODO(dspringer): remove this when NaCl x86-32 security issues are fixed | 92 // TODO(dspringer): remove this when NaCl x86-32 security issues are fixed |
| 93 extern const char kEnableNaClOnMac[]; | 93 extern const char kEnableNaClOnMac[]; |
| 94 #endif | 94 #endif |
| 95 extern const char kEnablePrivacyBlacklists[]; | 95 extern const char kEnablePrivacyBlacklists[]; |
| 96 extern const char kEnableRendererAccessibility[]; | 96 extern const char kEnableRendererAccessibility[]; |
| 97 extern const char kEnableSeccompSandbox[]; | 97 extern const char kEnableSeccompSandbox[]; |
| 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 kEnableTabbedBookmarkManager[]; |
| 102 extern const char kEnableUserDataDirProfiles[]; | 103 extern const char kEnableUserDataDirProfiles[]; |
| 103 extern const char kEnableVerticalTabs[]; | 104 extern const char kEnableVerticalTabs[]; |
| 104 extern const char kEnableVideoLayering[]; | 105 extern const char kEnableVideoLayering[]; |
| 105 extern const char kEnableWatchdog[]; | 106 extern const char kEnableWatchdog[]; |
| 106 extern const char kExperimentalSpellcheckerFeatures[]; | 107 extern const char kExperimentalSpellcheckerFeatures[]; |
| 107 extern const char kExplicitlyAllowedPorts[]; | 108 extern const char kExplicitlyAllowedPorts[]; |
| 108 extern const char kExtensionProcess[]; | 109 extern const char kExtensionProcess[]; |
| 109 extern const char kExtensionsUpdateFrequency[]; | 110 extern const char kExtensionsUpdateFrequency[]; |
| 110 extern const char kFileDescriptorLimit[]; | 111 extern const char kFileDescriptorLimit[]; |
| 111 extern const char kFirstRun[]; | 112 extern const char kFirstRun[]; |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 extern const char kGearsPluginPathOverride[]; | 250 extern const char kGearsPluginPathOverride[]; |
| 250 extern const char kInvalidateSyncLogin[]; | 251 extern const char kInvalidateSyncLogin[]; |
| 251 #endif | 252 #endif |
| 252 | 253 |
| 253 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 254 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 254 // alphabetical order, or in one of the ifdefs (also in order in each section). | 255 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 255 | 256 |
| 256 } // namespace switches | 257 } // namespace switches |
| 257 | 258 |
| 258 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 259 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |