Chromium Code Reviews| 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 1627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1638 // The default is "on" which matches the existing behavior. | 1638 // The default is "on" which matches the existing behavior. |
| 1639 // "off" switches to use non-blocking reads and WSAEventSelect. | 1639 // "off" switches to use non-blocking reads and WSAEventSelect. |
| 1640 const char kOverlappedRead[] = "overlapped-reads"; | 1640 const char kOverlappedRead[] = "overlapped-reads"; |
| 1641 | 1641 |
| 1642 // Relaunches metro Chrome on Windows 8 and higher using a given shortcut. | 1642 // Relaunches metro Chrome on Windows 8 and higher using a given shortcut. |
| 1643 const char kRelaunchShortcut[] = "relaunch-shortcut"; | 1643 const char kRelaunchShortcut[] = "relaunch-shortcut"; |
| 1644 | 1644 |
| 1645 // Waits for the given handle to be signaled before relaunching metro Chrome on | 1645 // Waits for the given handle to be signaled before relaunching metro Chrome on |
| 1646 // Windows 8 and higher. | 1646 // Windows 8 and higher. |
| 1647 const char kWaitForMutex[] = "wait-for-mutex"; | 1647 const char kWaitForMutex[] = "wait-for-mutex"; |
| 1648 | |
| 1649 const char kTaskRemoteProcessId[] = "task-remote-process-id"; | |
| 1650 const char kTaskOutputHandle[] = "task-output-handle"; | |
| 1651 const char kTaskResultHandle[] = "task-result-handle"; | |
|
robertshield
2013/03/28 14:31:48
All other flags here have comments on them, please
erikwright (departed)
2013/04/18 17:43:04
Done.
| |
| 1648 #endif | 1652 #endif |
| 1649 | 1653 |
| 1650 #ifndef NDEBUG | 1654 #ifndef NDEBUG |
| 1651 // Enables overriding the path of file manager extension. | 1655 // Enables overriding the path of file manager extension. |
| 1652 const char kFileManagerExtensionPath[] = "filemgr-ext-path"; | 1656 const char kFileManagerExtensionPath[] = "filemgr-ext-path"; |
| 1653 | 1657 |
| 1654 // Enables overriding the path of image loader extension. | 1658 // Enables overriding the path of image loader extension. |
| 1655 const char kImageLoaderExtensionPath[] = "image-loader-ext-path"; | 1659 const char kImageLoaderExtensionPath[] = "image-loader-ext-path"; |
| 1656 | 1660 |
| 1657 // Dumps dependency information about our profile services into a dot file in | 1661 // Dumps dependency information about our profile services into a dot file in |
| (...skipping 13 matching lines...) Expand all Loading... | |
| 1671 | 1675 |
| 1672 // ----------------------------------------------------------------------------- | 1676 // ----------------------------------------------------------------------------- |
| 1673 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1677 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1674 // | 1678 // |
| 1675 // You were going to just dump your switches here, weren't you? Instead, please | 1679 // You were going to just dump your switches here, weren't you? Instead, please |
| 1676 // put them in alphabetical order above, or in order inside the appropriate | 1680 // put them in alphabetical order above, or in order inside the appropriate |
| 1677 // ifdef at the bottom. The order should match the header. | 1681 // ifdef at the bottom. The order should match the header. |
| 1678 // ----------------------------------------------------------------------------- | 1682 // ----------------------------------------------------------------------------- |
| 1679 | 1683 |
| 1680 } // namespace switches | 1684 } // namespace switches |
| OLD | NEW |