| 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 the shared command-line switches used by code in the Chrome | 5 // Defines the shared command-line switches used by code in the Chrome |
| 6 // directory that don't have anywhere more specific to go. | 6 // directory that don't have anywhere more specific to go. |
| 7 | 7 |
| 8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ | 8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ |
| 9 #define CHROME_COMMON_CHROME_SWITCHES_H_ | 9 #define CHROME_COMMON_CHROME_SWITCHES_H_ |
| 10 | 10 |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 extern const char kSilentDebuggerExtensionAPI[]; | 246 extern const char kSilentDebuggerExtensionAPI[]; |
| 247 extern const char kSilentLaunch[]; | 247 extern const char kSilentLaunch[]; |
| 248 extern const char kSimulateCriticalUpdate[]; | 248 extern const char kSimulateCriticalUpdate[]; |
| 249 extern const char kSimulateElevatedRecovery[]; | 249 extern const char kSimulateElevatedRecovery[]; |
| 250 extern const char kSimulateOutdated[]; | 250 extern const char kSimulateOutdated[]; |
| 251 extern const char kSimulateOutdatedNoAU[]; | 251 extern const char kSimulateOutdatedNoAU[]; |
| 252 extern const char kSimulateUpgrade[]; | 252 extern const char kSimulateUpgrade[]; |
| 253 extern const char kSpeculativeResourcePrefetching[]; | 253 extern const char kSpeculativeResourcePrefetching[]; |
| 254 extern const char kSpeculativeResourcePrefetchingDisabled[]; | 254 extern const char kSpeculativeResourcePrefetchingDisabled[]; |
| 255 extern const char kSpeculativeResourcePrefetchingEnabled[]; | 255 extern const char kSpeculativeResourcePrefetchingEnabled[]; |
| 256 extern const char kSpeculativeResourcePrefetchingEnabledExternal[]; |
| 256 extern const char kSpeculativeResourcePrefetchingLearning[]; | 257 extern const char kSpeculativeResourcePrefetchingLearning[]; |
| 257 extern const char kSSLKeyLogFile[]; | 258 extern const char kSSLKeyLogFile[]; |
| 258 extern const char kStartMaximized[]; | 259 extern const char kStartMaximized[]; |
| 259 extern const char kStartStackProfiler[]; | 260 extern const char kStartStackProfiler[]; |
| 260 extern const char kSupervisedUserId[]; | 261 extern const char kSupervisedUserId[]; |
| 261 extern const char kSupervisedUserSafeSites[]; | 262 extern const char kSupervisedUserSafeSites[]; |
| 262 extern const char kSupervisedUserSyncToken[]; | 263 extern const char kSupervisedUserSyncToken[]; |
| 263 extern const char kSystemLogUploadFrequency[]; | 264 extern const char kSystemLogUploadFrequency[]; |
| 264 extern const char kTestName[]; | 265 extern const char kTestName[]; |
| 265 extern const char kTryChromeAgain[]; | 266 extern const char kTryChromeAgain[]; |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 #if defined(OS_WIN) | 405 #if defined(OS_WIN) |
| 405 bool GDITextPrintingEnabled(); | 406 bool GDITextPrintingEnabled(); |
| 406 #endif | 407 #endif |
| 407 | 408 |
| 408 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 409 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 409 // alphabetical order, or in one of the ifdefs (also in order in each section). | 410 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 410 | 411 |
| 411 } // namespace switches | 412 } // namespace switches |
| 412 | 413 |
| 413 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 414 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |