| 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 1420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1431 const char kEnableTouchpadThreeFingerClick[] | 1431 const char kEnableTouchpadThreeFingerClick[] |
| 1432 = "enable-touchpad-three-finger-click"; | 1432 = "enable-touchpad-three-finger-click"; |
| 1433 | 1433 |
| 1434 // Enables touchpad three-finger swipe. | 1434 // Enables touchpad three-finger swipe. |
| 1435 const char kEnableTouchpadThreeFingerSwipe[] | 1435 const char kEnableTouchpadThreeFingerSwipe[] |
| 1436 = "enable-touchpad-three-finger-swipe"; | 1436 = "enable-touchpad-three-finger-swipe"; |
| 1437 | 1437 |
| 1438 // Skips OAuth part of ChromeOS login process. | 1438 // Skips OAuth part of ChromeOS login process. |
| 1439 const char kSkipOAuthLogin[] = "skip-oauth-login"; | 1439 const char kSkipOAuthLogin[] = "skip-oauth-login"; |
| 1440 | 1440 |
| 1441 // If true, show advanced keyboard options to overload the search key as a way | |
| 1442 // to access keys such as Home and End, similar to the "Function key" found | |
| 1443 // commonly on laptop keyboards. | |
| 1444 const char kEnableChromebookFunctionKey[] = | |
| 1445 "enable-chromebook-function-key"; | |
| 1446 | |
| 1447 // Enable Kiosk mode for ChromeOS. | 1441 // Enable Kiosk mode for ChromeOS. |
| 1448 const char kEnableKioskMode[] = "enable-kiosk-mode"; | 1442 const char kEnableKioskMode[] = "enable-kiosk-mode"; |
| 1449 | 1443 |
| 1450 // Disable policy-configured local accounts. | 1444 // Disable policy-configured local accounts. |
| 1451 const char kDisableLocalAccounts[] = "disable-local-accounts"; | 1445 const char kDisableLocalAccounts[] = "disable-local-accounts"; |
| 1452 | 1446 |
| 1453 // Enables request of tablet site (via user agent override). | 1447 // Enables request of tablet site (via user agent override). |
| 1454 const char kEnableRequestTabletSite[] = "enable-request-tablet-site"; | 1448 const char kEnableRequestTabletSite[] = "enable-request-tablet-site"; |
| 1455 | 1449 |
| 1456 // Enables static ip configuration. This flag should be removed when it's on by | 1450 // Enables static ip configuration. This flag should be removed when it's on by |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1610 | 1604 |
| 1611 // ----------------------------------------------------------------------------- | 1605 // ----------------------------------------------------------------------------- |
| 1612 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1606 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1613 // | 1607 // |
| 1614 // You were going to just dump your switches here, weren't you? Instead, please | 1608 // You were going to just dump your switches here, weren't you? Instead, please |
| 1615 // put them in alphabetical order above, or in order inside the appropriate | 1609 // put them in alphabetical order above, or in order inside the appropriate |
| 1616 // ifdef at the bottom. The order should match the header. | 1610 // ifdef at the bottom. The order should match the header. |
| 1617 // ----------------------------------------------------------------------------- | 1611 // ----------------------------------------------------------------------------- |
| 1618 | 1612 |
| 1619 } // namespace switches | 1613 } // namespace switches |
| OLD | NEW |