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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 extern const char kImportFromFile[]; | 164 extern const char kImportFromFile[]; |
165 extern const char kInProcessPlugins[]; | 165 extern const char kInProcessPlugins[]; |
166 extern const char kInProcessWebGL[]; | 166 extern const char kInProcessWebGL[]; |
167 extern const char kIncognito[]; | 167 extern const char kIncognito[]; |
168 extern const char kInstallerTestBackup[]; | 168 extern const char kInstallerTestBackup[]; |
169 extern const char kInstallerTestBuild[]; | 169 extern const char kInstallerTestBuild[]; |
170 extern const char kInstallerTestClean[]; | 170 extern const char kInstallerTestClean[]; |
171 extern const char kInstallerTestForce[]; | 171 extern const char kInstallerTestForce[]; |
172 extern const char kInternalNaCl[]; | 172 extern const char kInternalNaCl[]; |
173 extern const char kInternalPepper[]; | 173 extern const char kInternalPepper[]; |
174 extern const char kIssue35198CrxDirBrowser[]; | |
175 extern const char kIssue35198ExtraLogging[]; | 174 extern const char kIssue35198ExtraLogging[]; |
176 extern const char kIssue35198Permission[]; | |
177 extern const char kJavaScriptFlags[]; | 175 extern const char kJavaScriptFlags[]; |
178 extern const char kKeepAliveForTest[]; | 176 extern const char kKeepAliveForTest[]; |
179 extern const char kLoadExtension[]; | 177 extern const char kLoadExtension[]; |
180 extern const char kLoadPlugin[]; | 178 extern const char kLoadPlugin[]; |
181 extern const char kExtraPluginDir[]; | 179 extern const char kExtraPluginDir[]; |
182 extern const char kLogFilterPrefix[]; | 180 extern const char kLogFilterPrefix[]; |
183 extern const char kLogPluginMessages[]; | 181 extern const char kLogPluginMessages[]; |
184 extern const char kLoggingLevel[]; | 182 extern const char kLoggingLevel[]; |
185 extern const char kMakeDefaultBrowser[]; | 183 extern const char kMakeDefaultBrowser[]; |
186 extern const char kMediaCacheSize[]; | 184 extern const char kMediaCacheSize[]; |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 #endif | 345 #endif |
348 // Return true if the switches indicate the seccomp sandbox is enabled. | 346 // Return true if the switches indicate the seccomp sandbox is enabled. |
349 bool SeccompSandboxEnabled(); | 347 bool SeccompSandboxEnabled(); |
350 | 348 |
351 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 349 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
352 // alphabetical order, or in one of the ifdefs (also in order in each section). | 350 // alphabetical order, or in one of the ifdefs (also in order in each section). |
353 | 351 |
354 } // namespace switches | 352 } // namespace switches |
355 | 353 |
356 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 354 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |