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 14 matching lines...) Expand all Loading... |
25 extern const char kAlwaysEnableDevTools[]; | 25 extern const char kAlwaysEnableDevTools[]; |
26 extern const char kApp[]; | 26 extern const char kApp[]; |
27 extern const char kAppId[]; | 27 extern const char kAppId[]; |
28 extern const char kAppLaunchAsPanel[]; | 28 extern const char kAppLaunchAsPanel[]; |
29 extern const char kAppsDebug[]; | 29 extern const char kAppsDebug[]; |
30 extern const char kAppsPanel[]; | 30 extern const char kAppsPanel[]; |
31 extern const char kAppsGalleryURL[]; | 31 extern const char kAppsGalleryURL[]; |
32 extern const char kAppsNoThrob[]; | 32 extern const char kAppsNoThrob[]; |
33 extern const char kAuthServerWhitelist[]; | 33 extern const char kAuthServerWhitelist[]; |
34 extern const char kAutomationClientChannelID[]; | 34 extern const char kAutomationClientChannelID[]; |
35 extern const char kBookmarkMenu[]; | |
36 extern const char kBrowserAssertTest[]; | 35 extern const char kBrowserAssertTest[]; |
37 extern const char kBrowserCrashTest[]; | 36 extern const char kBrowserCrashTest[]; |
38 extern const char kBrowserSubprocessPath[]; | 37 extern const char kBrowserSubprocessPath[]; |
39 extern const char kChromeFrame[]; | 38 extern const char kChromeFrame[]; |
40 extern const char kCloudPrintProxyId[]; | 39 extern const char kCloudPrintProxyId[]; |
41 extern const char kCloudPrintServiceURL[]; | 40 extern const char kCloudPrintServiceURL[]; |
42 extern const char kCountry[]; | 41 extern const char kCountry[]; |
43 extern const char kDebugPrint[]; | 42 extern const char kDebugPrint[]; |
44 extern const char kDiagnostics[]; | 43 extern const char kDiagnostics[]; |
45 extern const char kDisableAltWinstation[]; | 44 extern const char kDisableAltWinstation[]; |
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 #endif | 325 #endif |
327 // Return true if the switches indicate the seccomp sandbox is enabled. | 326 // Return true if the switches indicate the seccomp sandbox is enabled. |
328 bool SeccompSandboxEnabled(); | 327 bool SeccompSandboxEnabled(); |
329 | 328 |
330 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 329 // 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). | 330 // alphabetical order, or in one of the ifdefs (also in order in each section). |
332 | 331 |
333 } // namespace switches | 332 } // namespace switches |
334 | 333 |
335 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 334 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |