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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 extern const char kOpenInNewWindow[]; | 302 extern const char kOpenInNewWindow[]; |
303 extern const char kOrganicInstall[]; | 303 extern const char kOrganicInstall[]; |
304 extern const char kOriginToForceQuicOn[]; | 304 extern const char kOriginToForceQuicOn[]; |
305 extern const char kOriginalProcessStartTime[]; | 305 extern const char kOriginalProcessStartTime[]; |
306 extern const char kOutOfProcessPdf[]; | 306 extern const char kOutOfProcessPdf[]; |
307 extern const char kPackExtension[]; | 307 extern const char kPackExtension[]; |
308 extern const char kPackExtensionKey[]; | 308 extern const char kPackExtensionKey[]; |
309 extern const char kParentProfile[]; | 309 extern const char kParentProfile[]; |
310 extern const char kPerformanceMonitorGathering[]; | 310 extern const char kPerformanceMonitorGathering[]; |
311 extern const char kPlaybackMode[]; | 311 extern const char kPlaybackMode[]; |
312 extern const char kPnaclDir[]; | |
313 extern const char kPpapiFlashPath[]; | 312 extern const char kPpapiFlashPath[]; |
314 extern const char kPpapiFlashVersion[]; | 313 extern const char kPpapiFlashVersion[]; |
315 extern const char kPrefetchSearchResults[]; | 314 extern const char kPrefetchSearchResults[]; |
316 extern const char kPrerenderFromOmnibox[]; | 315 extern const char kPrerenderFromOmnibox[]; |
317 extern const char kPrerenderFromOmniboxSwitchValueAuto[]; | 316 extern const char kPrerenderFromOmniboxSwitchValueAuto[]; |
318 extern const char kPrerenderFromOmniboxSwitchValueDisabled[]; | 317 extern const char kPrerenderFromOmniboxSwitchValueDisabled[]; |
319 extern const char kPrerenderFromOmniboxSwitchValueEnabled[]; | 318 extern const char kPrerenderFromOmniboxSwitchValueEnabled[]; |
320 extern const char kPrerenderMode[]; | 319 extern const char kPrerenderMode[]; |
321 extern const char kPrerenderModeSwitchValueAuto[]; | 320 extern const char kPrerenderModeSwitchValueAuto[]; |
322 extern const char kPrerenderModeSwitchValueDisabled[]; | 321 extern const char kPrerenderModeSwitchValueDisabled[]; |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
470 #else | 469 #else |
471 extern const char kEnablePrintPreview[]; | 470 extern const char kEnablePrintPreview[]; |
472 #endif | 471 #endif |
473 | 472 |
474 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 473 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
475 // alphabetical order, or in one of the ifdefs (also in order in each section). | 474 // alphabetical order, or in one of the ifdefs (also in order in each section). |
476 | 475 |
477 } // namespace switches | 476 } // namespace switches |
478 | 477 |
479 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 478 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |