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 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 extern const char kEnableSyncSessions[]; | 175 extern const char kEnableSyncSessions[]; |
176 extern const char kEnableSyncTypedUrls[]; | 176 extern const char kEnableSyncTypedUrls[]; |
177 extern const char kEnableTcpFastOpen[]; | 177 extern const char kEnableTcpFastOpen[]; |
178 extern const char kEnableTopSites[]; | 178 extern const char kEnableTopSites[]; |
179 extern const char kEnableTouch[]; | 179 extern const char kEnableTouch[]; |
180 extern const char kEnableVerbatimInstant[]; | 180 extern const char kEnableVerbatimInstant[]; |
181 extern const char kEnableVerticalTabs[]; | 181 extern const char kEnableVerticalTabs[]; |
182 extern const char kEnableVideoFullscreen[]; | 182 extern const char kEnableVideoFullscreen[]; |
183 extern const char kEnableVideoLogging[]; | 183 extern const char kEnableVideoLogging[]; |
184 extern const char kEnableWatchdog[]; | 184 extern const char kEnableWatchdog[]; |
185 extern const char kEnableWebAudio[]; | |
186 extern const char kEnableXSSAuditor[]; | 185 extern const char kEnableXSSAuditor[]; |
187 // Experimental features. | 186 // Experimental features. |
188 extern const char kExperimentalLocationFeatures[]; | 187 extern const char kExperimentalLocationFeatures[]; |
189 extern const char kExperimentalSpellcheckerFeatures[]; | 188 extern const char kExperimentalSpellcheckerFeatures[]; |
190 // End experimental features. | 189 // End experimental features. |
191 extern const char kExplicitlyAllowedPorts[]; | 190 extern const char kExplicitlyAllowedPorts[]; |
192 extern const char kExtensionProcess[]; | 191 extern const char kExtensionProcess[]; |
193 extern const char kExtensionsUpdateFrequency[]; | 192 extern const char kExtensionsUpdateFrequency[]; |
194 extern const char kFlagSwitchesBegin[]; | 193 extern const char kFlagSwitchesBegin[]; |
195 extern const char kFlagSwitchesEnd[]; | 194 extern const char kFlagSwitchesEnd[]; |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
415 | 414 |
416 // Return true if the switches indicate the seccomp sandbox is enabled. | 415 // Return true if the switches indicate the seccomp sandbox is enabled. |
417 bool SeccompSandboxEnabled(); | 416 bool SeccompSandboxEnabled(); |
418 | 417 |
419 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 418 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
420 // alphabetical order, or in one of the ifdefs (also in order in each section). | 419 // alphabetical order, or in one of the ifdefs (also in order in each section). |
421 | 420 |
422 } // namespace switches | 421 } // namespace switches |
423 | 422 |
424 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 423 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |