| 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 1575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1586 "disable-system-fullscreen-for-testing"; | 1586 "disable-system-fullscreen-for-testing"; |
| 1587 | 1587 |
| 1588 // Disable CoreAnimation layer squashing to debug issues that appear only | 1588 // Disable CoreAnimation layer squashing to debug issues that appear only |
| 1589 // pre-10.9, since the API for it is only available in 10.9 and later. | 1589 // pre-10.9, since the API for it is only available in 10.9 and later. |
| 1590 const char kDisableCoreAnimationLayerSquashing[] = | 1590 const char kDisableCoreAnimationLayerSquashing[] = |
| 1591 "disable-core-animation-layer-squashing"; | 1591 "disable-core-animation-layer-squashing"; |
| 1592 | 1592 |
| 1593 // Enables a simplified fullscreen UI on Mac. | 1593 // Enables a simplified fullscreen UI on Mac. |
| 1594 const char kEnableSimplifiedFullscreen[] = "enable-simplified-fullscreen"; | 1594 const char kEnableSimplifiedFullscreen[] = "enable-simplified-fullscreen"; |
| 1595 | 1595 |
| 1596 // Performs Keychain reauthorization from the command line on behalf of a | |
| 1597 // special Keychain reauthorization stub executable. Used during auto-update. | |
| 1598 const char kKeychainReauthorize[] = "keychain-reauthorize"; | |
| 1599 | |
| 1600 // A process type (switches::kProcessType) that relaunches the browser. See | 1596 // A process type (switches::kProcessType) that relaunches the browser. See |
| 1601 // chrome/browser/mac/relauncher.h. | 1597 // chrome/browser/mac/relauncher.h. |
| 1602 const char kRelauncherProcess[] = "relauncher"; | 1598 const char kRelauncherProcess[] = "relauncher"; |
| 1603 | 1599 |
| 1604 #endif | 1600 #endif |
| 1605 | 1601 |
| 1606 // Use bubbles for content permissions requests instead of infobars. | 1602 // Use bubbles for content permissions requests instead of infobars. |
| 1607 const char kEnablePermissionsBubbles[] = "enable-permissions-bubbles"; | 1603 const char kEnablePermissionsBubbles[] = "enable-permissions-bubbles"; |
| 1608 | 1604 |
| 1609 #if defined(OS_WIN) | 1605 #if defined(OS_WIN) |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1667 | 1663 |
| 1668 // ----------------------------------------------------------------------------- | 1664 // ----------------------------------------------------------------------------- |
| 1669 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1665 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1670 // | 1666 // |
| 1671 // You were going to just dump your switches here, weren't you? Instead, please | 1667 // You were going to just dump your switches here, weren't you? Instead, please |
| 1672 // put them in alphabetical order above, or in order inside the appropriate | 1668 // put them in alphabetical order above, or in order inside the appropriate |
| 1673 // ifdef at the bottom. The order should match the header. | 1669 // ifdef at the bottom. The order should match the header. |
| 1674 // ----------------------------------------------------------------------------- | 1670 // ----------------------------------------------------------------------------- |
| 1675 | 1671 |
| 1676 } // namespace switches | 1672 } // namespace switches |
| OLD | NEW |