| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 13 matching lines...) Expand all Loading... |
| 24 // All switches in alphabetical order. The switches should be documented | 24 // All switches in alphabetical order. The switches should be documented |
| 25 // alongside the definition of their values in the .cc file. | 25 // alongside the definition of their values in the .cc file. |
| 26 extern const char kAllowCrossOriginAuthPrompt[]; | 26 extern const char kAllowCrossOriginAuthPrompt[]; |
| 27 extern const char kAllowFileAccess[]; | 27 extern const char kAllowFileAccess[]; |
| 28 extern const char kAllowHTTPBackgroundPage[]; | 28 extern const char kAllowHTTPBackgroundPage[]; |
| 29 extern const char kAllowLegacyExtensionManifests[]; | 29 extern const char kAllowLegacyExtensionManifests[]; |
| 30 extern const char kAllowNaClSocketAPI[]; | 30 extern const char kAllowNaClSocketAPI[]; |
| 31 extern const char kAllowOutdatedPlugins[]; | 31 extern const char kAllowOutdatedPlugins[]; |
| 32 extern const char kAllowRunningInsecureContent[]; | 32 extern const char kAllowRunningInsecureContent[]; |
| 33 extern const char kAllowScriptingGallery[]; | 33 extern const char kAllowScriptingGallery[]; |
| 34 extern const char kAllowWebSocketProxy[]; | |
| 35 extern const char kAllowWebUICompositing[]; | 34 extern const char kAllowWebUICompositing[]; |
| 36 extern const char kAlwaysAuthorizePlugins[]; | 35 extern const char kAlwaysAuthorizePlugins[]; |
| 37 extern const char kAppId[]; | 36 extern const char kAppId[]; |
| 38 extern const char kApp[]; | 37 extern const char kApp[]; |
| 39 extern const char kAppNotifyChannelServerURL[]; | 38 extern const char kAppNotifyChannelServerURL[]; |
| 40 extern const char kAppsCheckoutURL[]; | 39 extern const char kAppsCheckoutURL[]; |
| 41 extern const char kAppsGalleryDownloadURL[]; | 40 extern const char kAppsGalleryDownloadURL[]; |
| 42 extern const char kAppsGalleryInstallAutoConfirmForTests[]; | 41 extern const char kAppsGalleryInstallAutoConfirmForTests[]; |
| 43 extern const char kAppsGalleryReturnTokens[]; | 42 extern const char kAppsGalleryReturnTokens[]; |
| 44 extern const char kAppsGalleryURL[]; | 43 extern const char kAppsGalleryURL[]; |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 extern const char kTryChromeAgain[]; | 314 extern const char kTryChromeAgain[]; |
| 316 extern const char kUninstall[]; | 315 extern const char kUninstall[]; |
| 317 extern const char kUseMoreWebUI[]; | 316 extern const char kUseMoreWebUI[]; |
| 318 extern const char kUsePureViews[]; | 317 extern const char kUsePureViews[]; |
| 319 extern const char kUseSpdy[]; | 318 extern const char kUseSpdy[]; |
| 320 extern const char kIgnoreCertificateErrors[]; | 319 extern const char kIgnoreCertificateErrors[]; |
| 321 extern const char kMaxSpdySessionsPerDomain[]; | 320 extern const char kMaxSpdySessionsPerDomain[]; |
| 322 extern const char kMaxSpdyConcurrentStreams[]; | 321 extern const char kMaxSpdyConcurrentStreams[]; |
| 323 extern const char kUserDataDir[]; | 322 extern const char kUserDataDir[]; |
| 324 extern const char kVersion[]; | 323 extern const char kVersion[]; |
| 324 extern const char kWhitelistedExtensionID[]; |
| 325 extern const char kWinHttpProxyResolver[]; | 325 extern const char kWinHttpProxyResolver[]; |
| 326 extern const char kMemoryWidget[]; | 326 extern const char kMemoryWidget[]; |
| 327 | 327 |
| 328 #if defined(OS_CHROMEOS) | 328 #if defined(OS_CHROMEOS) |
| 329 extern const char kWebUILogin[]; | 329 extern const char kWebUILogin[]; |
| 330 extern const char kSkipOAuthLogin[]; | 330 extern const char kSkipOAuthLogin[]; |
| 331 extern const char kEnableBluetooth[]; | 331 extern const char kEnableBluetooth[]; |
| 332 extern const char kEnableDevicePolicy[]; | 332 extern const char kEnableDevicePolicy[]; |
| 333 extern const char kEnableGView[]; | 333 extern const char kEnableGView[]; |
| 334 extern const char kEnableLoginImages[]; | 334 extern const char kEnableLoginImages[]; |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 #if defined(USE_AURA) | 401 #if defined(USE_AURA) |
| 402 extern const char kTestCompositor[]; | 402 extern const char kTestCompositor[]; |
| 403 #endif | 403 #endif |
| 404 | 404 |
| 405 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 405 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 406 // alphabetical order, or in one of the ifdefs (also in order in each section). | 406 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 407 | 407 |
| 408 } // namespace switches | 408 } // namespace switches |
| 409 | 409 |
| 410 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 410 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |