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 1403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1414 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; | 1414 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; |
1415 | 1415 |
1416 // Enables discovery and interaction with Bluetooth devices that may not be | 1416 // Enables discovery and interaction with Bluetooth devices that may not be |
1417 // supported by ChromeOS. | 1417 // supported by ChromeOS. |
1418 const char kEnableUnsupportedBluetoothDevices[] = | 1418 const char kEnableUnsupportedBluetoothDevices[] = |
1419 "enable-unsupported-bluetooth-devices"; | 1419 "enable-unsupported-bluetooth-devices"; |
1420 | 1420 |
1421 // Passed to Chrome on first boot. Not passed on restart after sign out. | 1421 // Passed to Chrome on first boot. Not passed on restart after sign out. |
1422 const char kFirstBoot[] = "first-boot"; | 1422 const char kFirstBoot[] = "first-boot"; |
1423 | 1423 |
| 1424 // If true, the Chromebook has a Chrome OS keyboard. Don't use the flag for |
| 1425 // Chromeboxes. |
| 1426 const char kHasChromeOSKeyboard[] = "has-chromeos-keyboard"; |
| 1427 |
1424 // Path for the screensaver used in Kiosk mode | 1428 // Path for the screensaver used in Kiosk mode |
1425 const char kKioskModeScreensaverPath[] = "kiosk-mode-screensaver-path"; | 1429 const char kKioskModeScreensaverPath[] = "kiosk-mode-screensaver-path"; |
1426 | 1430 |
1427 // Enables Chrome-as-a-login-manager behavior. | 1431 // Enables Chrome-as-a-login-manager behavior. |
1428 const char kLoginManager[] = "login-manager"; | 1432 const char kLoginManager[] = "login-manager"; |
1429 | 1433 |
1430 // Allows to override the first login screen. The value should be the name of | 1434 // Allows to override the first login screen. The value should be the name of |
1431 // the first login screen to show (see | 1435 // the first login screen to show (see |
1432 // chrome/browser/chromeos/login/login_wizard_view.cc for actual names). | 1436 // chrome/browser/chromeos/login/login_wizard_view.cc for actual names). |
1433 // Ignored if kLoginManager is not specified. TODO(avayvod): Remove when the | 1437 // Ignored if kLoginManager is not specified. TODO(avayvod): Remove when the |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1579 | 1583 |
1580 // ----------------------------------------------------------------------------- | 1584 // ----------------------------------------------------------------------------- |
1581 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1585 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1582 // | 1586 // |
1583 // You were going to just dump your switches here, weren't you? Instead, please | 1587 // You were going to just dump your switches here, weren't you? Instead, please |
1584 // put them in alphabetical order above, or in order inside the appropriate | 1588 // put them in alphabetical order above, or in order inside the appropriate |
1585 // ifdef at the bottom. The order should match the header. | 1589 // ifdef at the bottom. The order should match the header. |
1586 // ----------------------------------------------------------------------------- | 1590 // ----------------------------------------------------------------------------- |
1587 | 1591 |
1588 } // namespace switches | 1592 } // namespace switches |
OLD | NEW |