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

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

Issue 11297002: [Media Gallery] Added code to support mtp device media file system on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase + IWYU Created 7 years, 11 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
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 1556 matching lines...) Expand 10 before | Expand all | Expand 10 after
1567 // A process type (switches::kProcessType) that relaunches the browser. See 1567 // A process type (switches::kProcessType) that relaunches the browser. See
1568 // chrome/browser/mac/relauncher.h. 1568 // chrome/browser/mac/relauncher.h.
1569 const char kRelauncherProcess[] = "relauncher"; 1569 const char kRelauncherProcess[] = "relauncher";
1570 1570
1571 // Uses mock keychain for testing purposes, which prevents blocking dialogs 1571 // Uses mock keychain for testing purposes, which prevents blocking dialogs
1572 // from causing timeouts. 1572 // from causing timeouts.
1573 const char kUseMockKeychain[] = "use-mock-keychain"; 1573 const char kUseMockKeychain[] = "use-mock-keychain";
1574 #endif 1574 #endif
1575 1575
1576 #if defined(OS_WIN) 1576 #if defined(OS_WIN)
1577 // Enables media transfer protocol device media support for
1578 // mediaGalleries extension API.
1579 // TODO(kmadhusu): Remove this switch after fixing crbug.com/154835.
1580 const char kEnableMediaTransferProtocolDeviceOperations[] =
1581 "enable-media-transfer-protocol-device-operations";
1582
1577 // For the DelegateExecute verb handler to launch Chrome in metro mode on 1583 // For the DelegateExecute verb handler to launch Chrome in metro mode on
1578 // Windows 8 and higher. Used when relaunching metro Chrome. 1584 // Windows 8 and higher. Used when relaunching metro Chrome.
1579 const char kForceImmersive[] = "force-immersive"; 1585 const char kForceImmersive[] = "force-immersive";
1580 1586
1581 // For the DelegateExecute verb handler to launch Chrome in desktop mode on 1587 // For the DelegateExecute verb handler to launch Chrome in desktop mode on
1582 // Windows 8 and higher. Used when relaunching metro Chrome. 1588 // Windows 8 and higher. Used when relaunching metro Chrome.
1583 const char kForceDesktop[] = "force-desktop"; 1589 const char kForceDesktop[] = "force-desktop";
1584 1590
1585 // Allows for disabling the overlapped I/O for TCP reads. 1591 // Allows for disabling the overlapped I/O for TCP reads.
1586 // Possible values are "on" or "off". 1592 // Possible values are "on" or "off".
(...skipping 30 matching lines...) Expand all
1617 1623
1618 // ----------------------------------------------------------------------------- 1624 // -----------------------------------------------------------------------------
1619 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1625 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1620 // 1626 //
1621 // You were going to just dump your switches here, weren't you? Instead, please 1627 // You were going to just dump your switches here, weren't you? Instead, please
1622 // put them in alphabetical order above, or in order inside the appropriate 1628 // put them in alphabetical order above, or in order inside the appropriate
1623 // ifdef at the bottom. The order should match the header. 1629 // ifdef at the bottom. The order should match the header.
1624 // ----------------------------------------------------------------------------- 1630 // -----------------------------------------------------------------------------
1625 1631
1626 } // namespace switches 1632 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698