| 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 extern const char kHideIcons[]; | 139 extern const char kHideIcons[]; |
| 140 extern const char kHomePage[]; | 140 extern const char kHomePage[]; |
| 141 extern const char kHostRules[]; | 141 extern const char kHostRules[]; |
| 142 extern const char kHostResolverRules[]; | 142 extern const char kHostResolverRules[]; |
| 143 extern const char kImport[]; | 143 extern const char kImport[]; |
| 144 extern const char kImportFromFile[]; | 144 extern const char kImportFromFile[]; |
| 145 extern const char kInProcessPlugins[]; | 145 extern const char kInProcessPlugins[]; |
| 146 extern const char kInProcessWebGL[]; | 146 extern const char kInProcessWebGL[]; |
| 147 extern const char kIncognito[]; | 147 extern const char kIncognito[]; |
| 148 extern const char kInternalNaCl[]; | 148 extern const char kInternalNaCl[]; |
| 149 extern const char kInternalPDF[]; | |
| 150 extern const char kInternalPepper[]; | 149 extern const char kInternalPepper[]; |
| 151 extern const char kJavaScriptFlags[]; | 150 extern const char kJavaScriptFlags[]; |
| 152 extern const char kLoadExtension[]; | 151 extern const char kLoadExtension[]; |
| 153 extern const char kLoadPlugin[]; | 152 extern const char kLoadPlugin[]; |
| 154 extern const char kLongLivedExtensions[]; | 153 extern const char kLongLivedExtensions[]; |
| 155 extern const char kLogFilterPrefix[]; | 154 extern const char kLogFilterPrefix[]; |
| 156 extern const char kLogPluginMessages[]; | 155 extern const char kLogPluginMessages[]; |
| 157 extern const char kLoggingLevel[]; | 156 extern const char kLoggingLevel[]; |
| 158 extern const char kMakeDefaultBrowser[]; | 157 extern const char kMakeDefaultBrowser[]; |
| 159 extern const char kMediaCacheSize[]; | 158 extern const char kMediaCacheSize[]; |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 #endif | 292 #endif |
| 294 // Return true if the switches indicate the seccomp sandbox is enabled. | 293 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 295 bool SeccompSandboxEnabled(); | 294 bool SeccompSandboxEnabled(); |
| 296 | 295 |
| 297 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 296 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 298 // alphabetical order, or in one of the ifdefs (also in order in each section). | 297 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 299 | 298 |
| 300 } // namespace switches | 299 } // namespace switches |
| 301 | 300 |
| 302 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 301 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |