| 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 extern const char kEnableQuic[]; | 149 extern const char kEnableQuic[]; |
| 150 extern const char kEnableQuicPortSelection[]; | 150 extern const char kEnableQuicPortSelection[]; |
| 151 extern const char kEnableSavePasswordBubble[]; | 151 extern const char kEnableSavePasswordBubble[]; |
| 152 extern const char kEnableSdchPersistence[]; | 152 extern const char kEnableSdchPersistence[]; |
| 153 extern const char kEnableSessionCrashedBubble[]; | 153 extern const char kEnableSessionCrashedBubble[]; |
| 154 extern const char kEnableSettingsWindow[]; | 154 extern const char kEnableSettingsWindow[]; |
| 155 extern const char kDisableSettingsWindow[]; | 155 extern const char kDisableSettingsWindow[]; |
| 156 extern const char kEnableSimplifiedFullscreenUI[]; | 156 extern const char kEnableSimplifiedFullscreenUI[]; |
| 157 extern const char kDisableSimplifiedFullscreenUI[]; | 157 extern const char kDisableSimplifiedFullscreenUI[]; |
| 158 extern const char kEnableSiteEngagementService[]; | 158 extern const char kEnableSiteEngagementService[]; |
| 159 extern const char kEnableSiteEngagementStorageEviction[]; |
| 159 extern const char kEnableSuggestionsService[]; | 160 extern const char kEnableSuggestionsService[]; |
| 160 extern const char kEnableSupervisedUserManagedBookmarksFolder[]; | 161 extern const char kEnableSupervisedUserManagedBookmarksFolder[]; |
| 161 extern const char kEnableTabAudioMuting[]; | 162 extern const char kEnableTabAudioMuting[]; |
| 162 extern const char kEnableThumbnailRetargeting[]; | 163 extern const char kEnableThumbnailRetargeting[]; |
| 163 extern const char kEnableUserAlternateProtocolPorts[]; | 164 extern const char kEnableUserAlternateProtocolPorts[]; |
| 164 extern const char kEnableWebAppFrame[]; | 165 extern const char kEnableWebAppFrame[]; |
| 165 extern const char kEnableWifiCredentialSync[]; | 166 extern const char kEnableWifiCredentialSync[]; |
| 166 extern const char kExtensionContentVerificationBootstrap[]; | 167 extern const char kExtensionContentVerificationBootstrap[]; |
| 167 extern const char kExtensionContentVerificationEnforceStrict[]; | 168 extern const char kExtensionContentVerificationEnforceStrict[]; |
| 168 extern const char kExtensionContentVerificationEnforce[]; | 169 extern const char kExtensionContentVerificationEnforce[]; |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 #if defined(ENABLE_TASK_MANAGER) | 424 #if defined(ENABLE_TASK_MANAGER) |
| 424 bool NewTaskManagerEnabled(); | 425 bool NewTaskManagerEnabled(); |
| 425 #endif // defined(ENABLE_TASK_MANAGER) | 426 #endif // defined(ENABLE_TASK_MANAGER) |
| 426 | 427 |
| 427 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 428 // 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). | 429 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 429 | 430 |
| 430 } // namespace switches | 431 } // namespace switches |
| 431 | 432 |
| 432 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 433 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |