| 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 extern const char kEnableSync[]; | 116 extern const char kEnableSync[]; |
| 117 extern const char kEnableSyncAutofill[]; | 117 extern const char kEnableSyncAutofill[]; |
| 118 extern const char kEnableSyncBookmarks[]; | 118 extern const char kEnableSyncBookmarks[]; |
| 119 extern const char kEnableSyncPasswords[]; | 119 extern const char kEnableSyncPasswords[]; |
| 120 extern const char kEnableSyncPreferences[]; | 120 extern const char kEnableSyncPreferences[]; |
| 121 extern const char kEnableSyncThemes[]; | 121 extern const char kEnableSyncThemes[]; |
| 122 extern const char kEnableSyncTypedUrls[]; | 122 extern const char kEnableSyncTypedUrls[]; |
| 123 extern const char kEnableTouch[]; | 123 extern const char kEnableTouch[]; |
| 124 extern const char kEnableUserDataDirProfiles[]; | 124 extern const char kEnableUserDataDirProfiles[]; |
| 125 extern const char kEnableVerticalTabs[]; | 125 extern const char kEnableVerticalTabs[]; |
| 126 extern const char kEnableVideoFullscreen[]; |
| 126 extern const char kEnableVideoLayering[]; | 127 extern const char kEnableVideoLayering[]; |
| 127 extern const char kEnableVideoLogging[]; | 128 extern const char kEnableVideoLogging[]; |
| 128 extern const char kEnableWatchdog[]; | 129 extern const char kEnableWatchdog[]; |
| 129 extern const char kEnableXSSAuditor[]; | 130 extern const char kEnableXSSAuditor[]; |
| 130 extern const char kExperimentalSpellcheckerFeatures[]; | 131 extern const char kExperimentalSpellcheckerFeatures[]; |
| 131 extern const char kExplicitlyAllowedPorts[]; | 132 extern const char kExplicitlyAllowedPorts[]; |
| 132 extern const char kExtensionProcess[]; | 133 extern const char kExtensionProcess[]; |
| 133 extern const char kExtensionsUpdateFrequency[]; | 134 extern const char kExtensionsUpdateFrequency[]; |
| 134 extern const char kFileDescriptorLimit[]; | 135 extern const char kFileDescriptorLimit[]; |
| 135 extern const char kFirstRun[]; | 136 extern const char kFirstRun[]; |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 #endif | 298 #endif |
| 298 // Return true if the switches indicate the seccomp sandbox is enabled. | 299 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 299 bool SeccompSandboxEnabled(); | 300 bool SeccompSandboxEnabled(); |
| 300 | 301 |
| 301 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 302 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 302 // alphabetical order, or in one of the ifdefs (also in order in each section). | 303 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 303 | 304 |
| 304 } // namespace switches | 305 } // namespace switches |
| 305 | 306 |
| 306 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 307 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |