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 1358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1369 // Enables the redirection of viewable document requests to the Google Document | 1369 // Enables the redirection of viewable document requests to the Google Document |
1370 // Viewer. | 1370 // Viewer. |
1371 const char kEnableGView[] = "enable-gview"; | 1371 const char kEnableGView[] = "enable-gview"; |
1372 | 1372 |
1373 // Enable Kiosk mode for ChromeOS | 1373 // Enable Kiosk mode for ChromeOS |
1374 const char kEnableKioskMode[] = "enable-kiosk-mode"; | 1374 const char kEnableKioskMode[] = "enable-kiosk-mode"; |
1375 | 1375 |
1376 // Enables support for policy-configured networks. | 1376 // Enables support for policy-configured networks. |
1377 const char kEnableONCPolicy[] = "enable-onc-policy"; | 1377 const char kEnableONCPolicy[] = "enable-onc-policy"; |
1378 | 1378 |
| 1379 // Enables request of tablet site (via user agent override). |
| 1380 // Normally, this is only available on Chromebooks with a touch screen. |
| 1381 // The second flag is for testing. It enables it for Chromebooks |
| 1382 // regardless of touch screen availability. |
| 1383 const char kEnableRequestTabletSite[] = "enable-request-tablet-site"; |
| 1384 const char kEnableRequestTabletSiteEvenIfNonTouchDevice[] = |
| 1385 "enable-request-tablet-site-even-if-non-touch-device"; // for testing |
| 1386 |
1379 // Enables static ip configuration. This flag should be removed when it's on by | 1387 // Enables static ip configuration. This flag should be removed when it's on by |
1380 // default. | 1388 // default. |
1381 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; | 1389 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; |
1382 | 1390 |
1383 // Enables discovery and interaction with Bluetooth devices that may not be | 1391 // Enables discovery and interaction with Bluetooth devices that may not be |
1384 // supported by ChromeOS. | 1392 // supported by ChromeOS. |
1385 const char kEnableUnsupportedBluetoothDevices[] = | 1393 const char kEnableUnsupportedBluetoothDevices[] = |
1386 "enable-unsupported-bluetooth-devices"; | 1394 "enable-unsupported-bluetooth-devices"; |
1387 | 1395 |
1388 // Enables the experimental wallpaper picker UI. | 1396 // Enables the experimental wallpaper picker UI. |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1528 | 1536 |
1529 // ----------------------------------------------------------------------------- | 1537 // ----------------------------------------------------------------------------- |
1530 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1538 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1531 // | 1539 // |
1532 // You were going to just dump your switches here, weren't you? Instead, please | 1540 // You were going to just dump your switches here, weren't you? Instead, please |
1533 // put them in alphabetical order above, or in order inside the appropriate | 1541 // put them in alphabetical order above, or in order inside the appropriate |
1534 // ifdef at the bottom. The order should match the header. | 1542 // ifdef at the bottom. The order should match the header. |
1535 // ----------------------------------------------------------------------------- | 1543 // ----------------------------------------------------------------------------- |
1536 | 1544 |
1537 } // namespace switches | 1545 } // namespace switches |
OLD | NEW |