| 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 27 matching lines...) Expand all Loading... |
| 38 extern const char kBrowserCrashTest[]; | 38 extern const char kBrowserCrashTest[]; |
| 39 extern const char kBrowserSubprocessPath[]; | 39 extern const char kBrowserSubprocessPath[]; |
| 40 extern const char kChromeFrame[]; | 40 extern const char kChromeFrame[]; |
| 41 extern const char kCloudPrintProxyId[]; | 41 extern const char kCloudPrintProxyId[]; |
| 42 extern const char kCloudPrintServiceURL[]; | 42 extern const char kCloudPrintServiceURL[]; |
| 43 extern const char kCountry[]; | 43 extern const char kCountry[]; |
| 44 extern const char kDebugPrint[]; | 44 extern const char kDebugPrint[]; |
| 45 extern const char kDiagnostics[]; | 45 extern const char kDiagnostics[]; |
| 46 extern const char kDisableAltWinstation[]; | 46 extern const char kDisableAltWinstation[]; |
| 47 extern const char kDisableApplicationCache[]; | 47 extern const char kDisableApplicationCache[]; |
| 48 extern const char kDisableAppsPanel[]; | |
| 49 extern const char kDisableAudio[]; | 48 extern const char kDisableAudio[]; |
| 50 extern const char kDisableAuthNegotiateCnameLookup[]; | 49 extern const char kDisableAuthNegotiateCnameLookup[]; |
| 51 extern const char kDisableBackingStoreLimit[]; | 50 extern const char kDisableBackingStoreLimit[]; |
| 52 extern const char kDisableByteRangeSupport[]; | 51 extern const char kDisableByteRangeSupport[]; |
| 53 extern const char kDisableCustomJumpList[]; | 52 extern const char kDisableCustomJumpList[]; |
| 54 extern const char kDisableDatabases[]; | 53 extern const char kDisableDatabases[]; |
| 55 extern const char kDisableDesktopNotifications[]; | 54 extern const char kDisableDesktopNotifications[]; |
| 56 extern const char kDisableDevTools[]; | 55 extern const char kDisableDevTools[]; |
| 57 extern const char kDisableExtensions[]; | 56 extern const char kDisableExtensions[]; |
| 58 extern const char kDisableGeolocation[]; | 57 extern const char kDisableGeolocation[]; |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 #endif | 289 #endif |
| 291 // Return true if the switches indicate the seccomp sandbox is enabled. | 290 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 292 bool SeccompSandboxEnabled(); | 291 bool SeccompSandboxEnabled(); |
| 293 | 292 |
| 294 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 293 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 295 // alphabetical order, or in one of the ifdefs (also in order in each section). | 294 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 296 | 295 |
| 297 } // namespace switches | 296 } // namespace switches |
| 298 | 297 |
| 299 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 298 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |