| 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 kAlwaysAuthorizePlugins[]; | 34 extern const char kAlwaysAuthorizePlugins[]; |
| 36 extern const char kAppId[]; | 35 extern const char kAppId[]; |
| 37 extern const char kApp[]; | 36 extern const char kApp[]; |
| 38 extern const char kAppNotifyChannelServerURL[]; | 37 extern const char kAppNotifyChannelServerURL[]; |
| 39 extern const char kAppsCheckoutURL[]; | 38 extern const char kAppsCheckoutURL[]; |
| 40 extern const char kAppsGalleryDownloadURL[]; | 39 extern const char kAppsGalleryDownloadURL[]; |
| 41 extern const char kAppsGalleryInstallAutoConfirmForTests[]; | 40 extern const char kAppsGalleryInstallAutoConfirmForTests[]; |
| 42 extern const char kAppsGalleryReturnTokens[]; | 41 extern const char kAppsGalleryReturnTokens[]; |
| 43 extern const char kAppsGalleryURL[]; | 42 extern const char kAppsGalleryURL[]; |
| 44 extern const char kAppsGalleryUpdateURL[]; | 43 extern const char kAppsGalleryUpdateURL[]; |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 extern const char kTestingFixedHttpsPort[]; | 293 extern const char kTestingFixedHttpsPort[]; |
| 295 extern const char kTryChromeAgain[]; | 294 extern const char kTryChromeAgain[]; |
| 296 extern const char kUninstall[]; | 295 extern const char kUninstall[]; |
| 297 extern const char kUseMoreWebUI[]; | 296 extern const char kUseMoreWebUI[]; |
| 298 extern const char kUseSpdy[]; | 297 extern const char kUseSpdy[]; |
| 299 extern const char kIgnoreCertificateErrors[]; | 298 extern const char kIgnoreCertificateErrors[]; |
| 300 extern const char kMaxSpdySessionsPerDomain[]; | 299 extern const char kMaxSpdySessionsPerDomain[]; |
| 301 extern const char kMaxSpdyConcurrentStreams[]; | 300 extern const char kMaxSpdyConcurrentStreams[]; |
| 302 extern const char kUserDataDir[]; | 301 extern const char kUserDataDir[]; |
| 303 extern const char kVersion[]; | 302 extern const char kVersion[]; |
| 303 extern const char kWhitelistedExtensionID[]; |
| 304 extern const char kWinHttpProxyResolver[]; | 304 extern const char kWinHttpProxyResolver[]; |
| 305 extern const char kMemoryWidget[]; | 305 extern const char kMemoryWidget[]; |
| 306 | 306 |
| 307 #if defined(OS_CHROMEOS) | 307 #if defined(OS_CHROMEOS) |
| 308 extern const char kWebUILogin[]; | 308 extern const char kWebUILogin[]; |
| 309 extern const char kSkipOAuthLogin[]; | 309 extern const char kSkipOAuthLogin[]; |
| 310 extern const char kEnableBluetooth[]; | 310 extern const char kEnableBluetooth[]; |
| 311 extern const char kEnableDevicePolicy[]; | 311 extern const char kEnableDevicePolicy[]; |
| 312 extern const char kEnableGView[]; | 312 extern const char kEnableGView[]; |
| 313 extern const char kEnableMobileSetupDialog[]; | 313 extern const char kEnableMobileSetupDialog[]; |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 #if defined(USE_AURA) | 374 #if defined(USE_AURA) |
| 375 extern const char kTestCompositor[]; | 375 extern const char kTestCompositor[]; |
| 376 #endif | 376 #endif |
| 377 | 377 |
| 378 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 378 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 379 // alphabetical order, or in one of the ifdefs (also in order in each section). | 379 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 380 | 380 |
| 381 } // namespace switches | 381 } // namespace switches |
| 382 | 382 |
| 383 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 383 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |