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 1424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1435 // Use level db for drive metadata storage. | 1435 // Use level db for drive metadata storage. |
1436 const char kUseLevelDBForGData[] = "use-leveldb-for-gdata"; | 1436 const char kUseLevelDBForGData[] = "use-leveldb-for-gdata"; |
1437 | 1437 |
1438 // Enables the redirection of viewable document requests to the Google Document | 1438 // Enables the redirection of viewable document requests to the Google Document |
1439 // Viewer. | 1439 // Viewer. |
1440 const char kEnableGView[] = "enable-gview"; | 1440 const char kEnableGView[] = "enable-gview"; |
1441 | 1441 |
1442 // Enable Kiosk mode for ChromeOS | 1442 // Enable Kiosk mode for ChromeOS |
1443 const char kEnableKioskMode[] = "enable-kiosk-mode"; | 1443 const char kEnableKioskMode[] = "enable-kiosk-mode"; |
1444 | 1444 |
1445 // Enables request of tablet site (via user agent override). | |
1446 // Normally, this is only available on Chromebooks with a touch screen. | |
1447 // The second flag is for testing. It enables it for Chromebooks | |
1448 // regardless of touch screen availability. | |
1449 const char kEnableRequestTabletSite[] = "enable-request-tablet-site"; | |
sky
2012/09/07 18:05:30
The bug makes it sounds like this is experimental,
sschmitz
2012/09/07 22:33:09
Done.
| |
1450 const char kEnableRequestTabletSiteEvenIfNonTouchDevice[] = | |
1451 "enable-request-tablet-site-even-if-non-touch-device"; | |
1452 | |
1445 // Enables static ip configuration. This flag should be removed when it's on by | 1453 // Enables static ip configuration. This flag should be removed when it's on by |
1446 // default. | 1454 // default. |
1447 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; | 1455 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; |
1448 | 1456 |
1449 // Enables discovery and interaction with Bluetooth devices that may not be | 1457 // Enables discovery and interaction with Bluetooth devices that may not be |
1450 // supported by ChromeOS. | 1458 // supported by ChromeOS. |
1451 const char kEnableUnsupportedBluetoothDevices[] = | 1459 const char kEnableUnsupportedBluetoothDevices[] = |
1452 "enable-unsupported-bluetooth-devices"; | 1460 "enable-unsupported-bluetooth-devices"; |
1453 | 1461 |
1454 // Passed to Chrome on first boot. Not passed on restart after sign out. | 1462 // Passed to Chrome on first boot. Not passed on restart after sign out. |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1605 | 1613 |
1606 // ----------------------------------------------------------------------------- | 1614 // ----------------------------------------------------------------------------- |
1607 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1615 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1608 // | 1616 // |
1609 // You were going to just dump your switches here, weren't you? Instead, please | 1617 // You were going to just dump your switches here, weren't you? Instead, please |
1610 // put them in alphabetical order above, or in order inside the appropriate | 1618 // put them in alphabetical order above, or in order inside the appropriate |
1611 // ifdef at the bottom. The order should match the header. | 1619 // ifdef at the bottom. The order should match the header. |
1612 // ----------------------------------------------------------------------------- | 1620 // ----------------------------------------------------------------------------- |
1613 | 1621 |
1614 } // namespace switches | 1622 } // namespace switches |
OLD | NEW |