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