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