Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(687)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 12304013: Introduce Image loader extension. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Simplified. Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1632 matching lines...) Expand 10 before | Expand all | Expand 10 after
1643 1643
1644 // Waits for the given handle to be signaled before relaunching metro Chrome on 1644 // Waits for the given handle to be signaled before relaunching metro Chrome on
1645 // Windows 8 and higher. 1645 // Windows 8 and higher.
1646 const char kWaitForMutex[] = "wait-for-mutex"; 1646 const char kWaitForMutex[] = "wait-for-mutex";
1647 #endif 1647 #endif
1648 1648
1649 #ifndef NDEBUG 1649 #ifndef NDEBUG
1650 // Enables overriding the path of file manager extension. 1650 // Enables overriding the path of file manager extension.
1651 const char kFileManagerExtensionPath[] = "filemgr-ext-path"; 1651 const char kFileManagerExtensionPath[] = "filemgr-ext-path";
1652 1652
1653 // Enables overriding the path of image loader extension.
1654 const char kImageLoaderExtensionPath[] = "image-loader-ext-path";
1655
1653 // Dumps dependency information about our profile services into a dot file in 1656 // Dumps dependency information about our profile services into a dot file in
1654 // the profile directory. 1657 // the profile directory.
1655 const char kDumpProfileDependencyGraph[] = "dump-profile-graph"; 1658 const char kDumpProfileDependencyGraph[] = "dump-profile-graph";
1656 #endif // NDEBUG 1659 #endif // NDEBUG
1657 1660
1658 // Controls print preview in the browser process. 1661 // Controls print preview in the browser process.
1659 #if defined(GOOGLE_CHROME_BUILD) 1662 #if defined(GOOGLE_CHROME_BUILD)
1660 // Disables print preview (For testing, and for users who don't like us. :[ ) 1663 // Disables print preview (For testing, and for users who don't like us. :[ )
1661 const char kDisablePrintPreview[] = "disable-print-preview"; 1664 const char kDisablePrintPreview[] = "disable-print-preview";
1662 #else 1665 #else
1663 // Enables print preview (Force enable on Chromium, which normally does not 1666 // Enables print preview (Force enable on Chromium, which normally does not
1664 // have the PDF viewer required for print preview.) 1667 // have the PDF viewer required for print preview.)
1665 const char kEnablePrintPreview[] = "enable-print-preview"; 1668 const char kEnablePrintPreview[] = "enable-print-preview";
1666 #endif 1669 #endif
1667 1670
1668 // ----------------------------------------------------------------------------- 1671 // -----------------------------------------------------------------------------
1669 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1672 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1670 // 1673 //
1671 // You were going to just dump your switches here, weren't you? Instead, please 1674 // You were going to just dump your switches here, weren't you? Instead, please
1672 // put them in alphabetical order above, or in order inside the appropriate 1675 // put them in alphabetical order above, or in order inside the appropriate
1673 // ifdef at the bottom. The order should match the header. 1676 // ifdef at the bottom. The order should match the header.
1674 // ----------------------------------------------------------------------------- 1677 // -----------------------------------------------------------------------------
1675 1678
1676 } // namespace switches 1679 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698