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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 extern const char kImportFromFile[]; | 153 extern const char kImportFromFile[]; |
154 extern const char kInProcessPlugins[]; | 154 extern const char kInProcessPlugins[]; |
155 extern const char kInProcessWebGL[]; | 155 extern const char kInProcessWebGL[]; |
156 extern const char kIncognito[]; | 156 extern const char kIncognito[]; |
157 extern const char kInstallerTestBackup[]; | 157 extern const char kInstallerTestBackup[]; |
158 extern const char kInstallerTestBuild[]; | 158 extern const char kInstallerTestBuild[]; |
159 extern const char kInstallerTestClean[]; | 159 extern const char kInstallerTestClean[]; |
160 extern const char kInstallerTestForce[]; | 160 extern const char kInstallerTestForce[]; |
161 extern const char kInternalNaCl[]; | 161 extern const char kInternalNaCl[]; |
162 extern const char kInternalPepper[]; | 162 extern const char kInternalPepper[]; |
163 extern const char kIssue35198CrxDirBrowser[]; | |
164 extern const char kIssue35198ExtraLogging[]; | |
165 extern const char kIssue35198Permission[]; | |
166 extern const char kJavaScriptFlags[]; | 163 extern const char kJavaScriptFlags[]; |
167 extern const char kLoadExtension[]; | 164 extern const char kLoadExtension[]; |
168 extern const char kLoadPlugin[]; | 165 extern const char kLoadPlugin[]; |
169 extern const char kExtraPluginDir[]; | 166 extern const char kExtraPluginDir[]; |
170 extern const char kLogFilterPrefix[]; | 167 extern const char kLogFilterPrefix[]; |
171 extern const char kLogPluginMessages[]; | 168 extern const char kLogPluginMessages[]; |
172 extern const char kLoggingLevel[]; | 169 extern const char kLoggingLevel[]; |
173 extern const char kMakeDefaultBrowser[]; | 170 extern const char kMakeDefaultBrowser[]; |
174 extern const char kMediaCacheSize[]; | 171 extern const char kMediaCacheSize[]; |
175 extern const char kMemoryProfiling[]; | 172 extern const char kMemoryProfiling[]; |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 #endif | 329 #endif |
333 // Return true if the switches indicate the seccomp sandbox is enabled. | 330 // Return true if the switches indicate the seccomp sandbox is enabled. |
334 bool SeccompSandboxEnabled(); | 331 bool SeccompSandboxEnabled(); |
335 | 332 |
336 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 333 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
337 // alphabetical order, or in one of the ifdefs (also in order in each section). | 334 // alphabetical order, or in one of the ifdefs (also in order in each section). |
338 | 335 |
339 } // namespace switches | 336 } // namespace switches |
340 | 337 |
341 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 338 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |