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