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