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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 extern const char kServiceProcess[]; | 249 extern const char kServiceProcess[]; |
250 extern const char kSilentDebuggerExtensionAPI[]; | 250 extern const char kSilentDebuggerExtensionAPI[]; |
251 extern const char kSilentLaunch[]; | 251 extern const char kSilentLaunch[]; |
252 extern const char kShowAppList[]; | 252 extern const char kShowAppList[]; |
253 extern const char kSSLKeyLogFile[]; | 253 extern const char kSSLKeyLogFile[]; |
254 extern const char kSimulateElevatedRecovery[]; | 254 extern const char kSimulateElevatedRecovery[]; |
255 extern const char kSimulateUpgrade[]; | 255 extern const char kSimulateUpgrade[]; |
256 extern const char kSimulateCriticalUpdate[]; | 256 extern const char kSimulateCriticalUpdate[]; |
257 extern const char kSimulateOutdated[]; | 257 extern const char kSimulateOutdated[]; |
258 extern const char kSimulateOutdatedNoAU[]; | 258 extern const char kSimulateOutdatedNoAU[]; |
| 259 extern const char kSkipReencodingOnSKPCapture[]; |
259 extern const char kSpeculativeResourcePrefetching[]; | 260 extern const char kSpeculativeResourcePrefetching[]; |
260 extern const char kSpeculativeResourcePrefetchingDisabled[]; | 261 extern const char kSpeculativeResourcePrefetchingDisabled[]; |
261 extern const char kSpeculativeResourcePrefetchingEnabled[]; | 262 extern const char kSpeculativeResourcePrefetchingEnabled[]; |
262 extern const char kSpeculativeResourcePrefetchingLearning[]; | 263 extern const char kSpeculativeResourcePrefetchingLearning[]; |
263 #if defined(ENABLE_SPELLCHECK) | 264 #if defined(ENABLE_SPELLCHECK) |
264 #if defined(OS_ANDROID) | 265 #if defined(OS_ANDROID) |
265 extern const char kEnableAndroidSpellChecker[]; | 266 extern const char kEnableAndroidSpellChecker[]; |
266 #endif | 267 #endif |
267 extern const char kEnableSpellingFeedbackFieldTrial[]; | 268 extern const char kEnableSpellingFeedbackFieldTrial[]; |
268 extern const char kSpellingServiceFeedbackUrl[]; | 269 extern const char kSpellingServiceFeedbackUrl[]; |
(...skipping 141 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 |