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 1386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1397 // Use level db for drive metadata storage. | 1397 // Use level db for drive metadata storage. |
1398 const char kUseLevelDBForGData[] = "use-leveldb-for-gdata"; | 1398 const char kUseLevelDBForGData[] = "use-leveldb-for-gdata"; |
1399 | 1399 |
1400 // Enables the redirection of viewable document requests to the Google Document | 1400 // Enables the redirection of viewable document requests to the Google Document |
1401 // Viewer. | 1401 // Viewer. |
1402 const char kEnableGView[] = "enable-gview"; | 1402 const char kEnableGView[] = "enable-gview"; |
1403 | 1403 |
1404 // Enable Kiosk mode for ChromeOS | 1404 // Enable Kiosk mode for ChromeOS |
1405 const char kEnableKioskMode[] = "enable-kiosk-mode"; | 1405 const char kEnableKioskMode[] = "enable-kiosk-mode"; |
1406 | 1406 |
| 1407 // Enables request of tablet site (via user agent override). |
| 1408 const char kEnableRequestTabletSite[] = "enable-request-tablet-site"; |
| 1409 |
1407 // Enables static ip configuration. This flag should be removed when it's on by | 1410 // Enables static ip configuration. This flag should be removed when it's on by |
1408 // default. | 1411 // default. |
1409 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; | 1412 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; |
1410 | 1413 |
1411 // Enables discovery and interaction with Bluetooth devices that may not be | 1414 // Enables discovery and interaction with Bluetooth devices that may not be |
1412 // supported by ChromeOS. | 1415 // supported by ChromeOS. |
1413 const char kEnableUnsupportedBluetoothDevices[] = | 1416 const char kEnableUnsupportedBluetoothDevices[] = |
1414 "enable-unsupported-bluetooth-devices"; | 1417 "enable-unsupported-bluetooth-devices"; |
1415 | 1418 |
1416 // Passed to Chrome on first boot. Not passed on restart after sign out. | 1419 // Passed to Chrome on first boot. Not passed on restart after sign out. |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1571 | 1574 |
1572 // ----------------------------------------------------------------------------- | 1575 // ----------------------------------------------------------------------------- |
1573 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1576 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1574 // | 1577 // |
1575 // You were going to just dump your switches here, weren't you? Instead, please | 1578 // You were going to just dump your switches here, weren't you? Instead, please |
1576 // put them in alphabetical order above, or in order inside the appropriate | 1579 // put them in alphabetical order above, or in order inside the appropriate |
1577 // ifdef at the bottom. The order should match the header. | 1580 // ifdef at the bottom. The order should match the header. |
1578 // ----------------------------------------------------------------------------- | 1581 // ----------------------------------------------------------------------------- |
1579 | 1582 |
1580 } // namespace switches | 1583 } // namespace switches |
OLD | NEW |