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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 extern const char kEnableNativeWebWorkers[]; | 99 extern const char kEnableNativeWebWorkers[]; |
100 extern const char kEnablePrivacyBlacklists[]; | 100 extern const char kEnablePrivacyBlacklists[]; |
101 extern const char kEnableRendererAccessibility[]; | 101 extern const char kEnableRendererAccessibility[]; |
102 extern const char kEnableStatsTable[]; | 102 extern const char kEnableStatsTable[]; |
103 extern const char kEnableSync[]; | 103 extern const char kEnableSync[]; |
104 extern const char kEnableSyncAutofill[]; | 104 extern const char kEnableSyncAutofill[]; |
105 extern const char kEnableSyncBookmarks[]; | 105 extern const char kEnableSyncBookmarks[]; |
106 extern const char kEnableSyncPreferences[]; | 106 extern const char kEnableSyncPreferences[]; |
107 extern const char kEnableSyncThemes[]; | 107 extern const char kEnableSyncThemes[]; |
108 extern const char kEnableSyncTypedUrls[]; | 108 extern const char kEnableSyncTypedUrls[]; |
| 109 extern const char kEnableTouch[]; |
109 extern const char kEnableUserDataDirProfiles[]; | 110 extern const char kEnableUserDataDirProfiles[]; |
110 extern const char kEnableVerticalTabs[]; | 111 extern const char kEnableVerticalTabs[]; |
111 extern const char kEnableVideoLayering[]; | 112 extern const char kEnableVideoLayering[]; |
112 extern const char kEnableVideoLogging[]; | 113 extern const char kEnableVideoLogging[]; |
113 extern const char kEnableWatchdog[]; | 114 extern const char kEnableWatchdog[]; |
114 extern const char kEnableXSSAuditor[]; | 115 extern const char kEnableXSSAuditor[]; |
115 extern const char kExperimentalSpellcheckerFeatures[]; | 116 extern const char kExperimentalSpellcheckerFeatures[]; |
116 extern const char kExplicitlyAllowedPorts[]; | 117 extern const char kExplicitlyAllowedPorts[]; |
117 extern const char kExtensionProcess[]; | 118 extern const char kExtensionProcess[]; |
118 extern const char kExtensionsUpdateFrequency[]; | 119 extern const char kExtensionsUpdateFrequency[]; |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
278 #endif | 279 #endif |
279 // Return true if the switches indicate the seccomp sandbox is enabled. | 280 // Return true if the switches indicate the seccomp sandbox is enabled. |
280 bool SeccompSandboxEnabled(); | 281 bool SeccompSandboxEnabled(); |
281 | 282 |
282 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 283 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
283 // alphabetical order, or in one of the ifdefs (also in order in each section). | 284 // alphabetical order, or in one of the ifdefs (also in order in each section). |
284 | 285 |
285 } // namespace switches | 286 } // namespace switches |
286 | 287 |
287 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 288 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |