| 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 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 463 extern const char kUseMockKeychain[]; | 463 extern const char kUseMockKeychain[]; |
| 464 #endif | 464 #endif |
| 465 | 465 |
| 466 #if defined(OS_WIN) | 466 #if defined(OS_WIN) |
| 467 extern const char kForceImmersive[]; | 467 extern const char kForceImmersive[]; |
| 468 extern const char kForceDesktop[]; | 468 extern const char kForceDesktop[]; |
| 469 extern const char kOverlappedRead[]; | 469 extern const char kOverlappedRead[]; |
| 470 extern const char kPrintRaster[]; | 470 extern const char kPrintRaster[]; |
| 471 extern const char kRelaunchShortcut[]; | 471 extern const char kRelaunchShortcut[]; |
| 472 extern const char kWaitForMutex[]; | 472 extern const char kWaitForMutex[]; |
| 473 extern const char kTaskRemoteProcessId[]; |
| 474 extern const char kTaskOutputHandle[]; |
| 475 extern const char kTaskResultHandle[]; |
| 473 #endif | 476 #endif |
| 474 | 477 |
| 475 #ifndef NDEBUG | 478 #ifndef NDEBUG |
| 476 extern const char kFileManagerExtensionPath[]; | 479 extern const char kFileManagerExtensionPath[]; |
| 477 extern const char kImageLoaderExtensionPath[]; | 480 extern const char kImageLoaderExtensionPath[]; |
| 478 extern const char kDumpProfileDependencyGraph[]; | 481 extern const char kDumpProfileDependencyGraph[]; |
| 479 #endif | 482 #endif |
| 480 | 483 |
| 481 #if defined(GOOGLE_CHROME_BUILD) | 484 #if defined(GOOGLE_CHROME_BUILD) |
| 482 extern const char kDisablePrintPreview[]; | 485 extern const char kDisablePrintPreview[]; |
| 483 #else | 486 #else |
| 484 extern const char kEnablePrintPreview[]; | 487 extern const char kEnablePrintPreview[]; |
| 485 #endif | 488 #endif |
| 486 | 489 |
| 487 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 490 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 488 // alphabetical order, or in one of the ifdefs (also in order in each section). | 491 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 489 | 492 |
| 490 } // namespace switches | 493 } // namespace switches |
| 491 | 494 |
| 492 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 495 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |