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 10 matching lines...) Expand all Loading... |
21 // alongside the definition of their values in the .cc file. | 21 // alongside the definition of their values in the .cc file. |
22 extern const char kActivateOnLaunch[]; | 22 extern const char kActivateOnLaunch[]; |
23 extern const char kAllowFileAccessFromFiles[]; | 23 extern const char kAllowFileAccessFromFiles[]; |
24 extern const char kAllowSandboxDebugging[]; | 24 extern const char kAllowSandboxDebugging[]; |
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 kAppsGalleryTitle[]; | |
32 extern const char kAppsGalleryURL[]; | 31 extern const char kAppsGalleryURL[]; |
33 extern const char kAppsNoThrob[]; | 32 extern const char kAppsNoThrob[]; |
34 extern const char kAuthServerWhitelist[]; | 33 extern const char kAuthServerWhitelist[]; |
35 extern const char kAutomationClientChannelID[]; | 34 extern const char kAutomationClientChannelID[]; |
36 extern const char kBookmarkMenu[]; | 35 extern const char kBookmarkMenu[]; |
37 extern const char kBrowserAssertTest[]; | 36 extern const char kBrowserAssertTest[]; |
38 extern const char kBrowserCrashTest[]; | 37 extern const char kBrowserCrashTest[]; |
39 extern const char kBrowserSubprocessPath[]; | 38 extern const char kBrowserSubprocessPath[]; |
40 extern const char kChromeFrame[]; | 39 extern const char kChromeFrame[]; |
41 extern const char kCloudPrintProxyId[]; | 40 extern const char kCloudPrintProxyId[]; |
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 #endif | 304 #endif |
306 // Return true if the switches indicate the seccomp sandbox is enabled. | 305 // Return true if the switches indicate the seccomp sandbox is enabled. |
307 bool SeccompSandboxEnabled(); | 306 bool SeccompSandboxEnabled(); |
308 | 307 |
309 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 308 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
310 // alphabetical order, or in one of the ifdefs (also in order in each section). | 309 // alphabetical order, or in one of the ifdefs (also in order in each section). |
311 | 310 |
312 } // namespace switches | 311 } // namespace switches |
313 | 312 |
314 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 313 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |