| 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 #include "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
| 6 | 6 |
| 7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 | 9 |
| 10 namespace switches { | 10 namespace switches { |
| (...skipping 1624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1635 | 1635 |
| 1636 // Waits for the given handle to be signaled before relaunching metro Chrome on | 1636 // Waits for the given handle to be signaled before relaunching metro Chrome on |
| 1637 // Windows 8 and higher. | 1637 // Windows 8 and higher. |
| 1638 const char kWaitForMutex[] = "wait-for-mutex"; | 1638 const char kWaitForMutex[] = "wait-for-mutex"; |
| 1639 #endif | 1639 #endif |
| 1640 | 1640 |
| 1641 #ifndef NDEBUG | 1641 #ifndef NDEBUG |
| 1642 // Enables overriding the path of file manager extension. | 1642 // Enables overriding the path of file manager extension. |
| 1643 const char kFileManagerExtensionPath[] = "filemgr-ext-path"; | 1643 const char kFileManagerExtensionPath[] = "filemgr-ext-path"; |
| 1644 | 1644 |
| 1645 // Enables overriding the path of image loader extension. |
| 1646 const char kImageLoaderExtensionPath[] = "image-loader-ext-path"; |
| 1647 |
| 1645 // Dumps dependency information about our profile services into a dot file in | 1648 // Dumps dependency information about our profile services into a dot file in |
| 1646 // the profile directory. | 1649 // the profile directory. |
| 1647 const char kDumpProfileDependencyGraph[] = "dump-profile-graph"; | 1650 const char kDumpProfileDependencyGraph[] = "dump-profile-graph"; |
| 1648 #endif // NDEBUG | 1651 #endif // NDEBUG |
| 1649 | 1652 |
| 1650 // Controls print preview in the browser process. | 1653 // Controls print preview in the browser process. |
| 1651 #if defined(GOOGLE_CHROME_BUILD) | 1654 #if defined(GOOGLE_CHROME_BUILD) |
| 1652 // Disables print preview (For testing, and for users who don't like us. :[ ) | 1655 // Disables print preview (For testing, and for users who don't like us. :[ ) |
| 1653 const char kDisablePrintPreview[] = "disable-print-preview"; | 1656 const char kDisablePrintPreview[] = "disable-print-preview"; |
| 1654 #else | 1657 #else |
| 1655 // Enables print preview (Force enable on Chromium, which normally does not | 1658 // Enables print preview (Force enable on Chromium, which normally does not |
| 1656 // have the PDF viewer required for print preview.) | 1659 // have the PDF viewer required for print preview.) |
| 1657 const char kEnablePrintPreview[] = "enable-print-preview"; | 1660 const char kEnablePrintPreview[] = "enable-print-preview"; |
| 1658 #endif | 1661 #endif |
| 1659 | 1662 |
| 1660 // ----------------------------------------------------------------------------- | 1663 // ----------------------------------------------------------------------------- |
| 1661 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1664 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1662 // | 1665 // |
| 1663 // You were going to just dump your switches here, weren't you? Instead, please | 1666 // You were going to just dump your switches here, weren't you? Instead, please |
| 1664 // put them in alphabetical order above, or in order inside the appropriate | 1667 // put them in alphabetical order above, or in order inside the appropriate |
| 1665 // ifdef at the bottom. The order should match the header. | 1668 // ifdef at the bottom. The order should match the header. |
| 1666 // ----------------------------------------------------------------------------- | 1669 // ----------------------------------------------------------------------------- |
| 1667 | 1670 |
| 1668 } // namespace switches | 1671 } // namespace switches |
| OLD | NEW |