| 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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 extern const char kTryChromeAgain[]; | 316 extern const char kTryChromeAgain[]; |
| 318 extern const char kUninstall[]; | 317 extern const char kUninstall[]; |
| 319 extern const char kUseMoreWebUI[]; | 318 extern const char kUseMoreWebUI[]; |
| 320 extern const char kUsePureViews[]; | 319 extern const char kUsePureViews[]; |
| 321 extern const char kUseSpdy[]; | 320 extern const char kUseSpdy[]; |
| 322 extern const char kIgnoreCertificateErrors[]; | 321 extern const char kIgnoreCertificateErrors[]; |
| 323 extern const char kMaxSpdySessionsPerDomain[]; | 322 extern const char kMaxSpdySessionsPerDomain[]; |
| 324 extern const char kMaxSpdyConcurrentStreams[]; | 323 extern const char kMaxSpdyConcurrentStreams[]; |
| 325 extern const char kUserDataDir[]; | 324 extern const char kUserDataDir[]; |
| 326 extern const char kVersion[]; | 325 extern const char kVersion[]; |
| 326 extern const char kWhitelistedExtensionID[]; |
| 327 extern const char kWinHttpProxyResolver[]; | 327 extern const char kWinHttpProxyResolver[]; |
| 328 extern const char kMemoryWidget[]; | 328 extern const char kMemoryWidget[]; |
| 329 | 329 |
| 330 #if defined(OS_CHROMEOS) | 330 #if defined(OS_CHROMEOS) |
| 331 extern const char kWebUILogin[]; | 331 extern const char kWebUILogin[]; |
| 332 extern const char kSkipOAuthLogin[]; | 332 extern const char kSkipOAuthLogin[]; |
| 333 extern const char kEnableBluetooth[]; | 333 extern const char kEnableBluetooth[]; |
| 334 extern const char kEnableDevicePolicy[]; | 334 extern const char kEnableDevicePolicy[]; |
| 335 extern const char kEnableGView[]; | 335 extern const char kEnableGView[]; |
| 336 extern const char kEnableLoginImages[]; | 336 extern const char kEnableLoginImages[]; |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 #if defined(USE_AURA) | 404 #if defined(USE_AURA) |
| 405 extern const char kTestCompositor[]; | 405 extern const char kTestCompositor[]; |
| 406 #endif | 406 #endif |
| 407 | 407 |
| 408 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 408 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 409 // alphabetical order, or in one of the ifdefs (also in order in each section). | 409 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 410 | 410 |
| 411 } // namespace switches | 411 } // namespace switches |
| 412 | 412 |
| 413 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 413 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |