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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 extern const char kSbDisableDownloadProtection[]; | 263 extern const char kSbDisableDownloadProtection[]; |
264 extern const char kSbDisableExtensionBlacklist[]; | 264 extern const char kSbDisableExtensionBlacklist[]; |
265 extern const char kServiceProcess[]; | 265 extern const char kServiceProcess[]; |
266 extern const char kSilentDebuggerExtensionAPI[]; | 266 extern const char kSilentDebuggerExtensionAPI[]; |
267 extern const char kSilentLaunch[]; | 267 extern const char kSilentLaunch[]; |
268 extern const char kShowAppList[]; | 268 extern const char kShowAppList[]; |
269 extern const char kShowSavedCopy[]; | 269 extern const char kShowSavedCopy[]; |
270 extern const char kEnableShowSavedCopyPrimary[]; | 270 extern const char kEnableShowSavedCopyPrimary[]; |
271 extern const char kEnableShowSavedCopySecondary[]; | 271 extern const char kEnableShowSavedCopySecondary[]; |
272 extern const char kDisableShowSavedCopy[]; | 272 extern const char kDisableShowSavedCopy[]; |
| 273 extern const char kSimpleClearBrowsingDataSupportString[]; |
273 extern const char kSimulateElevatedRecovery[]; | 274 extern const char kSimulateElevatedRecovery[]; |
274 extern const char kSimulateUpgrade[]; | 275 extern const char kSimulateUpgrade[]; |
275 extern const char kSimulateCriticalUpdate[]; | 276 extern const char kSimulateCriticalUpdate[]; |
276 extern const char kSimulateOutdated[]; | 277 extern const char kSimulateOutdated[]; |
277 extern const char kSimulateOutdatedNoAU[]; | 278 extern const char kSimulateOutdatedNoAU[]; |
278 extern const char kSpeculativeResourcePrefetching[]; | 279 extern const char kSpeculativeResourcePrefetching[]; |
279 extern const char kSpeculativeResourcePrefetchingDisabled[]; | 280 extern const char kSpeculativeResourcePrefetchingDisabled[]; |
280 extern const char kSpeculativeResourcePrefetchingEnabled[]; | 281 extern const char kSpeculativeResourcePrefetchingEnabled[]; |
281 extern const char kSpeculativeResourcePrefetchingLearning[]; | 282 extern const char kSpeculativeResourcePrefetchingLearning[]; |
282 #if defined(ENABLE_SPELLCHECK) | 283 #if defined(ENABLE_SPELLCHECK) |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 #if defined(ENABLE_TASK_MANAGER) | 417 #if defined(ENABLE_TASK_MANAGER) |
417 bool NewTaskManagerEnabled(); | 418 bool NewTaskManagerEnabled(); |
418 #endif // defined(ENABLE_TASK_MANAGER) | 419 #endif // defined(ENABLE_TASK_MANAGER) |
419 | 420 |
420 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 421 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
421 // alphabetical order, or in one of the ifdefs (also in order in each section). | 422 // alphabetical order, or in one of the ifdefs (also in order in each section). |
422 | 423 |
423 } // namespace switches | 424 } // namespace switches |
424 | 425 |
425 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 426 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |