| 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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 extern const char kRegisterPepperPlugins[]; | 207 extern const char kRegisterPepperPlugins[]; |
| 208 extern const char kRemoteShellPort[]; | 208 extern const char kRemoteShellPort[]; |
| 209 extern const char kRendererAssertTest[]; | 209 extern const char kRendererAssertTest[]; |
| 210 extern const char kRendererCmdPrefix[]; | 210 extern const char kRendererCmdPrefix[]; |
| 211 extern const char kRendererCrashTest[]; | 211 extern const char kRendererCrashTest[]; |
| 212 extern const char kRendererProcess[]; | 212 extern const char kRendererProcess[]; |
| 213 extern const char kRendererStartupDialog[]; | 213 extern const char kRendererStartupDialog[]; |
| 214 extern const char kRestoreBackgroundContents[]; | 214 extern const char kRestoreBackgroundContents[]; |
| 215 extern const char kRestoreLastSession[]; | 215 extern const char kRestoreLastSession[]; |
| 216 extern const char kSafePlugins[]; | 216 extern const char kSafePlugins[]; |
| 217 extern const char kSbInfoURLPrefix[]; |
| 218 extern const char kSbMacKeyURLPrefix[]; |
| 219 extern const char kSbDisableAutoUpdate[]; |
| 217 extern const char kSdchFilter[]; | 220 extern const char kSdchFilter[]; |
| 218 extern const char kSearchInOmniboxHint[]; | 221 extern const char kSearchInOmniboxHint[]; |
| 219 extern const char kServiceProcess[]; | 222 extern const char kServiceProcess[]; |
| 220 extern const char kServiceAccountLsid[]; | 223 extern const char kServiceAccountLsid[]; |
| 221 extern const char kShowCompositedLayerBorders[]; | 224 extern const char kShowCompositedLayerBorders[]; |
| 222 extern const char kShowIcons[]; | 225 extern const char kShowIcons[]; |
| 223 extern const char kShowPaintRects[]; | 226 extern const char kShowPaintRects[]; |
| 224 extern const char kSilentDumpOnDCHECK[]; | 227 extern const char kSilentDumpOnDCHECK[]; |
| 225 extern const char kSimpleDataSource[]; | 228 extern const char kSimpleDataSource[]; |
| 226 extern const char kSingleProcess[]; | 229 extern const char kSingleProcess[]; |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 #endif | 329 #endif |
| 327 // Return true if the switches indicate the seccomp sandbox is enabled. | 330 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 328 bool SeccompSandboxEnabled(); | 331 bool SeccompSandboxEnabled(); |
| 329 | 332 |
| 330 // 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 |
| 331 // 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). |
| 332 | 335 |
| 333 } // namespace switches | 336 } // namespace switches |
| 334 | 337 |
| 335 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 338 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |