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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 extern const char kNumPacThreads[]; | 272 extern const char kNumPacThreads[]; |
273 extern const char kOmniboxHistoryQuickProviderReorderForInlining[]; | 273 extern const char kOmniboxHistoryQuickProviderReorderForInlining[]; |
274 extern const char kOmniboxHistoryQuickProviderReorderForInliningEnabled[]; | 274 extern const char kOmniboxHistoryQuickProviderReorderForInliningEnabled[]; |
275 extern const char kOmniboxHistoryQuickProviderReorderForInliningDisabled[]; | 275 extern const char kOmniboxHistoryQuickProviderReorderForInliningDisabled[]; |
276 extern const char kOmniboxInlineHistoryQuickProvider[]; | 276 extern const char kOmniboxInlineHistoryQuickProvider[]; |
277 extern const char kOmniboxInlineHistoryQuickProviderAllowed[]; | 277 extern const char kOmniboxInlineHistoryQuickProviderAllowed[]; |
278 extern const char kOmniboxInlineHistoryQuickProviderProhibited[]; | 278 extern const char kOmniboxInlineHistoryQuickProviderProhibited[]; |
279 extern const char kOnlyBlockSettingThirdPartyCookies[]; | 279 extern const char kOnlyBlockSettingThirdPartyCookies[]; |
280 extern const char kOpenInNewWindow[]; | 280 extern const char kOpenInNewWindow[]; |
281 extern const char kOrganicInstall[]; | 281 extern const char kOrganicInstall[]; |
282 extern const char kOriginPortToForceQuicOn[]; | 282 extern const char kOriginToForceQuicOn[]; |
283 extern const char kOriginalProcessStartTime[]; | 283 extern const char kOriginalProcessStartTime[]; |
284 extern const char kPackExtension[]; | 284 extern const char kPackExtension[]; |
285 extern const char kPackExtensionKey[]; | 285 extern const char kPackExtensionKey[]; |
286 extern const char kParentProfile[]; | 286 extern const char kParentProfile[]; |
287 extern const char kPerformanceMonitorGathering[]; | 287 extern const char kPerformanceMonitorGathering[]; |
288 extern const char kPlaybackMode[]; | 288 extern const char kPlaybackMode[]; |
289 extern const char kPnaclDir[]; | 289 extern const char kPnaclDir[]; |
290 extern const char kPpapiFlashInProcess[]; | 290 extern const char kPpapiFlashInProcess[]; |
291 extern const char kPpapiFlashPath[]; | 291 extern const char kPpapiFlashPath[]; |
292 extern const char kPpapiFlashVersion[]; | 292 extern const char kPpapiFlashVersion[]; |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
450 #else | 450 #else |
451 extern const char kEnablePrintPreview[]; | 451 extern const char kEnablePrintPreview[]; |
452 #endif | 452 #endif |
453 | 453 |
454 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 454 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
455 // alphabetical order, or in one of the ifdefs (also in order in each section). | 455 // alphabetical order, or in one of the ifdefs (also in order in each section). |
456 | 456 |
457 } // namespace switches | 457 } // namespace switches |
458 | 458 |
459 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 459 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |