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