| 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 extern const char kAllowSandboxDebugging[]; | 26 extern const char kAllowSandboxDebugging[]; |
| 27 extern const char kAllowScriptingGallery[]; | 27 extern const char kAllowScriptingGallery[]; |
| 28 extern const char kAlwaysEnableDevTools[]; | 28 extern const char kAlwaysEnableDevTools[]; |
| 29 extern const char kApp[]; | 29 extern const char kApp[]; |
| 30 extern const char kAppId[]; | 30 extern const char kAppId[]; |
| 31 extern const char kAppLaunchAsPanel[]; | 31 extern const char kAppLaunchAsPanel[]; |
| 32 extern const char kAppsDebug[]; | 32 extern const char kAppsDebug[]; |
| 33 extern const char kAppsPanel[]; | 33 extern const char kAppsPanel[]; |
| 34 extern const char kAppsGalleryURL[]; | 34 extern const char kAppsGalleryURL[]; |
| 35 extern const char kAppsNoThrob[]; | 35 extern const char kAppsNoThrob[]; |
| 36 extern const char kAuthNegotiateDelegateWhitelist[]; |
| 36 extern const char kAuthSchemes[]; | 37 extern const char kAuthSchemes[]; |
| 37 extern const char kAuthServerWhitelist[]; | 38 extern const char kAuthServerWhitelist[]; |
| 38 extern const char kAutomationClientChannelID[]; | 39 extern const char kAutomationClientChannelID[]; |
| 39 extern const char kBlockNonSandboxedPlugins[]; | 40 extern const char kBlockNonSandboxedPlugins[]; |
| 40 extern const char kBrowserAssertTest[]; | 41 extern const char kBrowserAssertTest[]; |
| 41 extern const char kBrowserCrashTest[]; | 42 extern const char kBrowserCrashTest[]; |
| 42 extern const char kBrowserSubprocessPath[]; | 43 extern const char kBrowserSubprocessPath[]; |
| 43 extern const char kChromeFrame[]; | 44 extern const char kChromeFrame[]; |
| 44 extern const char kCloudPrintProxyId[]; | 45 extern const char kCloudPrintProxyId[]; |
| 45 extern const char kCloudPrintServiceURL[]; | 46 extern const char kCloudPrintServiceURL[]; |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 #endif | 373 #endif |
| 373 // Return true if the switches indicate the seccomp sandbox is enabled. | 374 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 374 bool SeccompSandboxEnabled(); | 375 bool SeccompSandboxEnabled(); |
| 375 | 376 |
| 376 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 377 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 377 // alphabetical order, or in one of the ifdefs (also in order in each section). | 378 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 378 | 379 |
| 379 } // namespace switches | 380 } // namespace switches |
| 380 | 381 |
| 381 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 382 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |