| 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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 extern const char kServiceProcess[]; | 284 extern const char kServiceProcess[]; |
| 285 extern const char kSilentDebuggerExtensionAPI[]; | 285 extern const char kSilentDebuggerExtensionAPI[]; |
| 286 extern const char kSilentLaunch[]; | 286 extern const char kSilentLaunch[]; |
| 287 extern const char kSetToken[]; | 287 extern const char kSetToken[]; |
| 288 extern const char kShowAppList[]; | 288 extern const char kShowAppList[]; |
| 289 extern const char kShowIcons[]; | 289 extern const char kShowIcons[]; |
| 290 extern const char kShowSavedCopy[]; | 290 extern const char kShowSavedCopy[]; |
| 291 extern const char kEnableShowSavedCopyPrimary[]; | 291 extern const char kEnableShowSavedCopyPrimary[]; |
| 292 extern const char kEnableShowSavedCopySecondary[]; | 292 extern const char kEnableShowSavedCopySecondary[]; |
| 293 extern const char kDisableShowSavedCopy[]; | 293 extern const char kDisableShowSavedCopy[]; |
| 294 extern const char kSigninProcess[]; | |
| 295 extern const char kSimulateElevatedRecovery[]; | 294 extern const char kSimulateElevatedRecovery[]; |
| 296 extern const char kSimulateUpgrade[]; | 295 extern const char kSimulateUpgrade[]; |
| 297 extern const char kSimulateCriticalUpdate[]; | 296 extern const char kSimulateCriticalUpdate[]; |
| 298 extern const char kSimulateOutdated[]; | 297 extern const char kSimulateOutdated[]; |
| 299 extern const char kSimulateOutdatedNoAU[]; | 298 extern const char kSimulateOutdatedNoAU[]; |
| 300 extern const char kSpeculativeResourcePrefetching[]; | 299 extern const char kSpeculativeResourcePrefetching[]; |
| 301 extern const char kSpeculativeResourcePrefetchingDisabled[]; | 300 extern const char kSpeculativeResourcePrefetchingDisabled[]; |
| 302 extern const char kSpeculativeResourcePrefetchingEnabled[]; | 301 extern const char kSpeculativeResourcePrefetchingEnabled[]; |
| 303 extern const char kSpeculativeResourcePrefetchingLearning[]; | 302 extern const char kSpeculativeResourcePrefetchingLearning[]; |
| 304 #if defined(ENABLE_SPELLCHECK) | 303 #if defined(ENABLE_SPELLCHECK) |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 #if defined(OS_CHROMEOS) | 406 #if defined(OS_CHROMEOS) |
| 408 bool PowerOverlayEnabled(); | 407 bool PowerOverlayEnabled(); |
| 409 #endif | 408 #endif |
| 410 | 409 |
| 411 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 410 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 412 // alphabetical order, or in one of the ifdefs (also in order in each section). | 411 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 413 | 412 |
| 414 } // namespace switches | 413 } // namespace switches |
| 415 | 414 |
| 416 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 415 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |