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