| 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 1596 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1607 // Forcibly disables Lion-style on newer OSes, to allow developers to test the | 1607 // Forcibly disables Lion-style on newer OSes, to allow developers to test the |
| 1608 // older, SnowLeopard-style fullscreen. | 1608 // older, SnowLeopard-style fullscreen. |
| 1609 const char kDisableSystemFullscreenForTesting[] = | 1609 const char kDisableSystemFullscreenForTesting[] = |
| 1610 "disable-system-fullscreen-for-testing"; | 1610 "disable-system-fullscreen-for-testing"; |
| 1611 | 1611 |
| 1612 // Disable CoreAnimation layer squashing to debug issues that appear only | 1612 // Disable CoreAnimation layer squashing to debug issues that appear only |
| 1613 // pre-10.9, since the API for it is only available in 10.9 and later. | 1613 // pre-10.9, since the API for it is only available in 10.9 and later. |
| 1614 const char kDisableCoreAnimationLayerSquashing[] = | 1614 const char kDisableCoreAnimationLayerSquashing[] = |
| 1615 "disable-core-animation-layer-squashing"; | 1615 "disable-core-animation-layer-squashing"; |
| 1616 | 1616 |
| 1617 // Enables the tabs expose feature ( http://crbug.com/50307 ). | |
| 1618 const char kEnableExposeForTabs[] = "enable-expose-for-tabs"; | |
| 1619 | |
| 1620 // Enables a simplified fullscreen UI on Mac. | 1617 // Enables a simplified fullscreen UI on Mac. |
| 1621 const char kEnableSimplifiedFullscreen[] = "enable-simplified-fullscreen"; | 1618 const char kEnableSimplifiedFullscreen[] = "enable-simplified-fullscreen"; |
| 1622 | 1619 |
| 1623 // Performs Keychain reauthorization from the command line on behalf of a | 1620 // Performs Keychain reauthorization from the command line on behalf of a |
| 1624 // special Keychain reauthorization stub executable. Used during auto-update. | 1621 // special Keychain reauthorization stub executable. Used during auto-update. |
| 1625 const char kKeychainReauthorize[] = "keychain-reauthorize"; | 1622 const char kKeychainReauthorize[] = "keychain-reauthorize"; |
| 1626 | 1623 |
| 1627 // A process type (switches::kProcessType) that relaunches the browser. See | 1624 // A process type (switches::kProcessType) that relaunches the browser. See |
| 1628 // chrome/browser/mac/relauncher.h. | 1625 // chrome/browser/mac/relauncher.h. |
| 1629 const char kRelauncherProcess[] = "relauncher"; | 1626 const char kRelauncherProcess[] = "relauncher"; |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1688 | 1685 |
| 1689 // ----------------------------------------------------------------------------- | 1686 // ----------------------------------------------------------------------------- |
| 1690 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1687 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1691 // | 1688 // |
| 1692 // You were going to just dump your switches here, weren't you? Instead, please | 1689 // You were going to just dump your switches here, weren't you? Instead, please |
| 1693 // put them in alphabetical order above, or in order inside the appropriate | 1690 // put them in alphabetical order above, or in order inside the appropriate |
| 1694 // ifdef at the bottom. The order should match the header. | 1691 // ifdef at the bottom. The order should match the header. |
| 1695 // ----------------------------------------------------------------------------- | 1692 // ----------------------------------------------------------------------------- |
| 1696 | 1693 |
| 1697 } // namespace switches | 1694 } // namespace switches |
| OLD | NEW |