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 | 9 |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
(...skipping 20 matching lines...) Expand all Loading... |
31 extern const char kAllowLegacyExtensionManifests[]; | 31 extern const char kAllowLegacyExtensionManifests[]; |
32 extern const char kAllowNaClSocketAPI[]; | 32 extern const char kAllowNaClSocketAPI[]; |
33 extern const char kAllowOutdatedPlugins[]; | 33 extern const char kAllowOutdatedPlugins[]; |
34 extern const char kAllowRunningInsecureContent[]; | 34 extern const char kAllowRunningInsecureContent[]; |
35 extern const char kAllowScriptingGallery[]; | 35 extern const char kAllowScriptingGallery[]; |
36 extern const char kAlwaysAuthorizePlugins[]; | 36 extern const char kAlwaysAuthorizePlugins[]; |
37 extern const char kAppId[]; | 37 extern const char kAppId[]; |
38 extern const char kApp[]; | 38 extern const char kApp[]; |
39 extern const char kAppsDevtool[]; | 39 extern const char kAppsDevtool[]; |
40 extern const char kAppWindowSize[]; | 40 extern const char kAppWindowSize[]; |
41 extern const char kAppNotifyChannelServerURL[]; | |
42 extern const char kAppsCheckoutURL[]; | 41 extern const char kAppsCheckoutURL[]; |
43 extern const char kAppsGalleryDownloadURL[]; | 42 extern const char kAppsGalleryDownloadURL[]; |
44 extern const char kAppsGalleryInstallAutoConfirmForTests[]; | 43 extern const char kAppsGalleryInstallAutoConfirmForTests[]; |
45 extern const char kAppsGalleryURL[]; | 44 extern const char kAppsGalleryURL[]; |
46 extern const char kAppsGalleryUpdateURL[]; | 45 extern const char kAppsGalleryUpdateURL[]; |
47 extern const char kAppModeOAuth2Token[]; | 46 extern const char kAppModeOAuth2Token[]; |
48 extern const char kAppsNewInstallBubble[]; | 47 extern const char kAppsNewInstallBubble[]; |
49 extern const char kAppsNoThrob[]; | 48 extern const char kAppsNoThrob[]; |
50 extern const char kAuthNegotiateDelegateWhitelist[]; | 49 extern const char kAuthNegotiateDelegateWhitelist[]; |
51 extern const char kAuthSchemes[]; | 50 extern const char kAuthSchemes[]; |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 extern const char kDisableNTPOtherSessionsMenu[]; | 100 extern const char kDisableNTPOtherSessionsMenu[]; |
102 extern const char kDisablePopupBlocking[]; | 101 extern const char kDisablePopupBlocking[]; |
103 extern const char kDisablePreconnect[]; | 102 extern const char kDisablePreconnect[]; |
104 extern const char kDisablePromptOnRepost[]; | 103 extern const char kDisablePromptOnRepost[]; |
105 extern const char kDisableRestoreBackgroundContents[]; | 104 extern const char kDisableRestoreBackgroundContents[]; |
106 extern const char kDisableRestoreSessionState[]; | 105 extern const char kDisableRestoreSessionState[]; |
107 extern const char kDisableScriptedPrintThrottling[]; | 106 extern const char kDisableScriptedPrintThrottling[]; |
108 extern const char kDisableSync[]; | 107 extern const char kDisableSync[]; |
109 extern const char kDisableSyncAppSettings[]; | 108 extern const char kDisableSyncAppSettings[]; |
110 extern const char kDisableSyncApps[]; | 109 extern const char kDisableSyncApps[]; |
111 extern const char kDisableSyncAppNotifications[]; | |
112 extern const char kDisableSyncAutofill[]; | 110 extern const char kDisableSyncAutofill[]; |
113 extern const char kDisableSyncAutofillProfile[]; | 111 extern const char kDisableSyncAutofillProfile[]; |
114 extern const char kDisableSyncBookmarks[]; | 112 extern const char kDisableSyncBookmarks[]; |
115 extern const char kDisableSyncDictionary[]; | 113 extern const char kDisableSyncDictionary[]; |
116 extern const char kDisableSyncExtensionSettings[]; | 114 extern const char kDisableSyncExtensionSettings[]; |
117 extern const char kDisableSyncExtensions[]; | 115 extern const char kDisableSyncExtensions[]; |
118 extern const char kDisableSyncHistoryDeleteDirectives[]; | 116 extern const char kDisableSyncHistoryDeleteDirectives[]; |
119 extern const char kDisableSyncPasswords[]; | 117 extern const char kDisableSyncPasswords[]; |
120 extern const char kDisableSyncPreferences[]; | 118 extern const char kDisableSyncPreferences[]; |
121 extern const char kDisableSyncSearchEngines[]; | 119 extern const char kDisableSyncSearchEngines[]; |
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
476 #else | 474 #else |
477 extern const char kEnablePrintPreview[]; | 475 extern const char kEnablePrintPreview[]; |
478 #endif | 476 #endif |
479 | 477 |
480 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 478 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
481 // alphabetical order, or in one of the ifdefs (also in order in each section). | 479 // alphabetical order, or in one of the ifdefs (also in order in each section). |
482 | 480 |
483 } // namespace switches | 481 } // namespace switches |
484 | 482 |
485 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 483 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |