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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 extern const char kSavePageAsMHTML[]; | 215 extern const char kSavePageAsMHTML[]; |
216 extern const char kServiceProcess[]; | 216 extern const char kServiceProcess[]; |
217 extern const char kShowAppList[]; | 217 extern const char kShowAppList[]; |
218 extern const char kSilentDebuggerExtensionAPI[]; | 218 extern const char kSilentDebuggerExtensionAPI[]; |
219 extern const char kSilentLaunch[]; | 219 extern const char kSilentLaunch[]; |
220 extern const char kSimulateCriticalUpdate[]; | 220 extern const char kSimulateCriticalUpdate[]; |
221 extern const char kSimulateElevatedRecovery[]; | 221 extern const char kSimulateElevatedRecovery[]; |
222 extern const char kSimulateOutdated[]; | 222 extern const char kSimulateOutdated[]; |
223 extern const char kSimulateOutdatedNoAU[]; | 223 extern const char kSimulateOutdatedNoAU[]; |
224 extern const char kSimulateUpgrade[]; | 224 extern const char kSimulateUpgrade[]; |
225 extern const char kSpeculativeResourcePrefetching[]; | |
226 extern const char kSpeculativeResourcePrefetchingDisabled[]; | |
227 extern const char kSpeculativeResourcePrefetchingEnabled[]; | |
228 extern const char kSpeculativeResourcePrefetchingEnabledExternal[]; | |
229 extern const char kSpeculativeResourcePrefetchingLearning[]; | |
230 extern const char kSSLKeyLogFile[]; | 225 extern const char kSSLKeyLogFile[]; |
231 extern const char kStartMaximized[]; | 226 extern const char kStartMaximized[]; |
232 extern const char kStartStackProfiler[]; | 227 extern const char kStartStackProfiler[]; |
233 extern const char kSupervisedUserId[]; | 228 extern const char kSupervisedUserId[]; |
234 extern const char kSupervisedUserSafeSites[]; | 229 extern const char kSupervisedUserSafeSites[]; |
235 extern const char kSupervisedUserSyncToken[]; | 230 extern const char kSupervisedUserSyncToken[]; |
236 extern const char kSystemLogUploadFrequency[]; | 231 extern const char kSystemLogUploadFrequency[]; |
237 extern const char kTestName[]; | 232 extern const char kTestName[]; |
238 extern const char kTryChromeAgain[]; | 233 extern const char kTryChromeAgain[]; |
239 extern const char kUnlimitedStorage[]; | 234 extern const char kUnlimitedStorage[]; |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 #if defined(OS_WIN) | 370 #if defined(OS_WIN) |
376 bool GDITextPrintingEnabled(); | 371 bool GDITextPrintingEnabled(); |
377 #endif | 372 #endif |
378 | 373 |
379 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 374 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
380 // alphabetical order, or in one of the ifdefs (also in order in each section). | 375 // alphabetical order, or in one of the ifdefs (also in order in each section). |
381 | 376 |
382 } // namespace switches | 377 } // namespace switches |
383 | 378 |
384 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 379 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |