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 1364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1375 // Enables the redirection of viewable document requests to the Google Document | 1375 // Enables the redirection of viewable document requests to the Google Document |
1376 // Viewer. | 1376 // Viewer. |
1377 const char kEnableGView[] = "enable-gview"; | 1377 const char kEnableGView[] = "enable-gview"; |
1378 | 1378 |
1379 // Enable Kiosk mode for ChromeOS | 1379 // Enable Kiosk mode for ChromeOS |
1380 const char kEnableKioskMode[] = "enable-kiosk-mode"; | 1380 const char kEnableKioskMode[] = "enable-kiosk-mode"; |
1381 | 1381 |
1382 // Enables support for policy-configured networks. | 1382 // Enables support for policy-configured networks. |
1383 const char kEnableONCPolicy[] = "enable-onc-policy"; | 1383 const char kEnableONCPolicy[] = "enable-onc-policy"; |
1384 | 1384 |
| 1385 // Enables request of tablet site (via user agent override). |
| 1386 // Normally, this is only available on Chromebooks with a touch screen. |
| 1387 // The second flag is for testing. It enables it for Chromebooks |
| 1388 // regardless of touch screen availability. |
| 1389 const char kEnableRequestTabletSite[] = "enable-request-tablet-site"; |
| 1390 const char kEnableRequestTabletSiteEvenIfNonTouchDevice[] = |
| 1391 "enable-request-tablet-site-even-if-non-touch-device"; // for testing |
| 1392 |
1385 // Enables static ip configuration. This flag should be removed when it's on by | 1393 // Enables static ip configuration. This flag should be removed when it's on by |
1386 // default. | 1394 // default. |
1387 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; | 1395 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; |
1388 | 1396 |
1389 // Enables discovery and interaction with Bluetooth devices that may not be | 1397 // Enables discovery and interaction with Bluetooth devices that may not be |
1390 // supported by ChromeOS. | 1398 // supported by ChromeOS. |
1391 const char kEnableUnsupportedBluetoothDevices[] = | 1399 const char kEnableUnsupportedBluetoothDevices[] = |
1392 "enable-unsupported-bluetooth-devices"; | 1400 "enable-unsupported-bluetooth-devices"; |
1393 | 1401 |
1394 // Enables the experimental wallpaper picker UI. | 1402 // Enables the experimental wallpaper picker UI. |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1552 | 1560 |
1553 // ----------------------------------------------------------------------------- | 1561 // ----------------------------------------------------------------------------- |
1554 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1562 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1555 // | 1563 // |
1556 // You were going to just dump your switches here, weren't you? Instead, please | 1564 // You were going to just dump your switches here, weren't you? Instead, please |
1557 // put them in alphabetical order above, or in order inside the appropriate | 1565 // put them in alphabetical order above, or in order inside the appropriate |
1558 // ifdef at the bottom. The order should match the header. | 1566 // ifdef at the bottom. The order should match the header. |
1559 // ----------------------------------------------------------------------------- | 1567 // ----------------------------------------------------------------------------- |
1560 | 1568 |
1561 } // namespace switches | 1569 } // namespace switches |
OLD | NEW |