| 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 extern const char kInstallerTestBackup[]; | 163 extern const char kInstallerTestBackup[]; |
| 164 extern const char kInstallerTestBuild[]; | 164 extern const char kInstallerTestBuild[]; |
| 165 extern const char kInstallerTestClean[]; | 165 extern const char kInstallerTestClean[]; |
| 166 extern const char kInstallerTestForce[]; | 166 extern const char kInstallerTestForce[]; |
| 167 extern const char kInternalNaCl[]; | 167 extern const char kInternalNaCl[]; |
| 168 extern const char kInternalPepper[]; | 168 extern const char kInternalPepper[]; |
| 169 extern const char kIssue35198CrxDirBrowser[]; | 169 extern const char kIssue35198CrxDirBrowser[]; |
| 170 extern const char kIssue35198ExtraLogging[]; | 170 extern const char kIssue35198ExtraLogging[]; |
| 171 extern const char kIssue35198Permission[]; | 171 extern const char kIssue35198Permission[]; |
| 172 extern const char kJavaScriptFlags[]; | 172 extern const char kJavaScriptFlags[]; |
| 173 extern const char kKeepAliveForTest[]; |
| 173 extern const char kLoadExtension[]; | 174 extern const char kLoadExtension[]; |
| 174 extern const char kLoadPlugin[]; | 175 extern const char kLoadPlugin[]; |
| 175 extern const char kExtraPluginDir[]; | 176 extern const char kExtraPluginDir[]; |
| 176 extern const char kLogFilterPrefix[]; | 177 extern const char kLogFilterPrefix[]; |
| 177 extern const char kLogPluginMessages[]; | 178 extern const char kLogPluginMessages[]; |
| 178 extern const char kLoggingLevel[]; | 179 extern const char kLoggingLevel[]; |
| 179 extern const char kMakeDefaultBrowser[]; | 180 extern const char kMakeDefaultBrowser[]; |
| 180 extern const char kMediaCacheSize[]; | 181 extern const char kMediaCacheSize[]; |
| 181 extern const char kMemoryProfiling[]; | 182 extern const char kMemoryProfiling[]; |
| 182 extern const char kMessageLoopHistogrammer[]; | 183 extern const char kMessageLoopHistogrammer[]; |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 #endif | 345 #endif |
| 345 // Return true if the switches indicate the seccomp sandbox is enabled. | 346 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 346 bool SeccompSandboxEnabled(); | 347 bool SeccompSandboxEnabled(); |
| 347 | 348 |
| 348 // 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 |
| 349 // 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). |
| 350 | 351 |
| 351 } // namespace switches | 352 } // namespace switches |
| 352 | 353 |
| 353 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 354 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |