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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 extern const char kEnableNaCl[]; | 134 extern const char kEnableNaCl[]; |
135 extern const char kEnableNavigationTracing[]; | 135 extern const char kEnableNavigationTracing[]; |
136 extern const char kEnableNetBenchmarking[]; | 136 extern const char kEnableNetBenchmarking[]; |
137 extern const char kEnableNewBookmarkApps[]; | 137 extern const char kEnableNewBookmarkApps[]; |
138 extern const char kEnableNTPPopularSites[]; | 138 extern const char kEnableNTPPopularSites[]; |
139 extern const char kEnableOfflineAutoReload[]; | 139 extern const char kEnableOfflineAutoReload[]; |
140 extern const char kEnableOfflineAutoReloadVisibleOnly[]; | 140 extern const char kEnableOfflineAutoReloadVisibleOnly[]; |
141 extern const char kEnablePanels[]; | 141 extern const char kEnablePanels[]; |
142 extern const char kEnablePdfMaterialUI[]; | 142 extern const char kEnablePdfMaterialUI[]; |
143 extern const char kEnablePermissionsBubbles[]; | 143 extern const char kEnablePermissionsBubbles[]; |
| 144 extern const char kEnablePluginPlaceholderShadowDom[]; |
144 extern const char kEnablePotentiallyAnnoyingSecurityFeatures[]; | 145 extern const char kEnablePotentiallyAnnoyingSecurityFeatures[]; |
145 extern const char kEnablePowerOverlay[]; | 146 extern const char kEnablePowerOverlay[]; |
146 extern const char kEnablePrintPreviewRegisterPromos[]; | 147 extern const char kEnablePrintPreviewRegisterPromos[]; |
147 extern const char kEnableProfiling[]; | 148 extern const char kEnableProfiling[]; |
148 extern const char kEnableQuic[]; | 149 extern const char kEnableQuic[]; |
149 extern const char kEnableQuicPortSelection[]; | 150 extern const char kEnableQuicPortSelection[]; |
150 extern const char kEnableSavePasswordBubble[]; | 151 extern const char kEnableSavePasswordBubble[]; |
151 extern const char kEnableSdchPersistence[]; | 152 extern const char kEnableSdchPersistence[]; |
152 extern const char kEnableSessionCrashedBubble[]; | 153 extern const char kEnableSessionCrashedBubble[]; |
153 extern const char kEnableSettingsWindow[]; | 154 extern const char kEnableSettingsWindow[]; |
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
422 #if defined(ENABLE_TASK_MANAGER) | 423 #if defined(ENABLE_TASK_MANAGER) |
423 bool NewTaskManagerEnabled(); | 424 bool NewTaskManagerEnabled(); |
424 #endif // defined(ENABLE_TASK_MANAGER) | 425 #endif // defined(ENABLE_TASK_MANAGER) |
425 | 426 |
426 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 427 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
427 // alphabetical order, or in one of the ifdefs (also in order in each section). | 428 // alphabetical order, or in one of the ifdefs (also in order in each section). |
428 | 429 |
429 } // namespace switches | 430 } // namespace switches |
430 | 431 |
431 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 432 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |