| 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 1529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1540 const char kRelaunchShortcut[] = "relaunch-shortcut"; | 1540 const char kRelaunchShortcut[] = "relaunch-shortcut"; |
| 1541 | 1541 |
| 1542 // Waits for the given handle to be signaled before relaunching metro Chrome on | 1542 // Waits for the given handle to be signaled before relaunching metro Chrome on |
| 1543 // Windows 8 and higher. | 1543 // Windows 8 and higher. |
| 1544 const char kWaitForMutex[] = "wait-for-mutex"; | 1544 const char kWaitForMutex[] = "wait-for-mutex"; |
| 1545 #endif | 1545 #endif |
| 1546 | 1546 |
| 1547 #if defined(USE_AURA) | 1547 #if defined(USE_AURA) |
| 1548 // Use NativeTabContentsViewAura instead of the default implementation. | 1548 // Use NativeTabContentsViewAura instead of the default implementation. |
| 1549 const char kDisableTCVA[] = "disable-tcva"; | 1549 const char kDisableTCVA[] = "disable-tcva"; |
| 1550 | |
| 1551 // Opens an Ash window on startup. | |
| 1552 extern const char kOpenAsh[] = "open-ash"; | |
| 1553 #endif | |
| 1554 | |
| 1555 #if defined(USE_ASH) | |
| 1556 // Enables the wrench menu items to open/close the Ash desktop. | |
| 1557 const char kEnableAsh[] = "enable-ash"; | |
| 1558 #endif | 1550 #endif |
| 1559 | 1551 |
| 1560 #ifndef NDEBUG | 1552 #ifndef NDEBUG |
| 1561 // Enables overriding the path of file manager extension. | 1553 // Enables overriding the path of file manager extension. |
| 1562 const char kFileManagerExtensionPath[] = "filemgr-ext-path"; | 1554 const char kFileManagerExtensionPath[] = "filemgr-ext-path"; |
| 1563 | 1555 |
| 1564 // Dumps dependency information about our profile services into a dot file in | 1556 // Dumps dependency information about our profile services into a dot file in |
| 1565 // the profile directory. | 1557 // the profile directory. |
| 1566 const char kDumpProfileDependencyGraph[] = "dump-profile-graph"; | 1558 const char kDumpProfileDependencyGraph[] = "dump-profile-graph"; |
| 1567 #endif // NDEBUG | 1559 #endif // NDEBUG |
| (...skipping 10 matching lines...) Expand all Loading... |
| 1578 | 1570 |
| 1579 // ----------------------------------------------------------------------------- | 1571 // ----------------------------------------------------------------------------- |
| 1580 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1572 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1581 // | 1573 // |
| 1582 // You were going to just dump your switches here, weren't you? Instead, please | 1574 // You were going to just dump your switches here, weren't you? Instead, please |
| 1583 // put them in alphabetical order above, or in order inside the appropriate | 1575 // put them in alphabetical order above, or in order inside the appropriate |
| 1584 // ifdef at the bottom. The order should match the header. | 1576 // ifdef at the bottom. The order should match the header. |
| 1585 // ----------------------------------------------------------------------------- | 1577 // ----------------------------------------------------------------------------- |
| 1586 | 1578 |
| 1587 } // namespace switches | 1579 } // namespace switches |
| OLD | NEW |