| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 extern const char kEnablePdfMaterialUI[]; | 143 extern const char kEnablePdfMaterialUI[]; |
| 144 extern const char kEnablePermissionsBubbles[]; | 144 extern const char kEnablePermissionsBubbles[]; |
| 145 extern const char kEnablePotentiallyAnnoyingSecurityFeatures[]; | 145 extern const char kEnablePotentiallyAnnoyingSecurityFeatures[]; |
| 146 extern const char kEnablePowerOverlay[]; | 146 extern const char kEnablePowerOverlay[]; |
| 147 extern const char kEnablePrintPreviewRegisterPromos[]; | 147 extern const char kEnablePrintPreviewRegisterPromos[]; |
| 148 extern const char kEnableProfiling[]; | 148 extern const char kEnableProfiling[]; |
| 149 extern const char kEnablePushApiBackgroundMode[]; | 149 extern const char kEnablePushApiBackgroundMode[]; |
| 150 extern const char kDisablePushApiBackgroundMode[]; | 150 extern const char kDisablePushApiBackgroundMode[]; |
| 151 extern const char kEnableQuic[]; | 151 extern const char kEnableQuic[]; |
| 152 extern const char kEnableQuicPortSelection[]; | 152 extern const char kEnableQuicPortSelection[]; |
| 153 extern const char kEnableAltSvc[]; |
| 153 extern const char kEnableSavePasswordBubble[]; | 154 extern const char kEnableSavePasswordBubble[]; |
| 154 extern const char kEnableSdchPersistence[]; | 155 extern const char kEnableSdchPersistence[]; |
| 155 extern const char kEnableSessionCrashedBubble[]; | 156 extern const char kEnableSessionCrashedBubble[]; |
| 156 extern const char kEnableSettingsWindow[]; | 157 extern const char kEnableSettingsWindow[]; |
| 157 extern const char kDisableSettingsWindow[]; | 158 extern const char kDisableSettingsWindow[]; |
| 158 extern const char kEnableSimplifiedFullscreenUI[]; | 159 extern const char kEnableSimplifiedFullscreenUI[]; |
| 159 extern const char kDisableSimplifiedFullscreenUI[]; | 160 extern const char kDisableSimplifiedFullscreenUI[]; |
| 160 extern const char kEnableSiteEngagementService[]; | 161 extern const char kEnableSiteEngagementService[]; |
| 161 extern const char kEnableSuggestionsService[]; | 162 extern const char kEnableSuggestionsService[]; |
| 162 extern const char kEnableSupervisedUserManagedBookmarksFolder[]; | 163 extern const char kEnableSupervisedUserManagedBookmarksFolder[]; |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 #if defined(ENABLE_TASK_MANAGER) | 411 #if defined(ENABLE_TASK_MANAGER) |
| 411 bool NewTaskManagerEnabled(); | 412 bool NewTaskManagerEnabled(); |
| 412 #endif // defined(ENABLE_TASK_MANAGER) | 413 #endif // defined(ENABLE_TASK_MANAGER) |
| 413 | 414 |
| 414 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 415 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 415 // alphabetical order, or in one of the ifdefs (also in order in each section). | 416 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 416 | 417 |
| 417 } // namespace switches | 418 } // namespace switches |
| 418 | 419 |
| 419 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 420 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |