| 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 1339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1350 // Enables Drive v2 API instead of Google Documents List API. | 1350 // Enables Drive v2 API instead of Google Documents List API. |
| 1351 const char kEnableDriveV2Api[] = "enable-drive-v2-api"; | 1351 const char kEnableDriveV2Api[] = "enable-drive-v2-api"; |
| 1352 | 1352 |
| 1353 // Enables the redirection of viewable document requests to the Google Document | 1353 // Enables the redirection of viewable document requests to the Google Document |
| 1354 // Viewer. | 1354 // Viewer. |
| 1355 const char kEnableGView[] = "enable-gview"; | 1355 const char kEnableGView[] = "enable-gview"; |
| 1356 | 1356 |
| 1357 // Enable Kiosk mode for ChromeOS | 1357 // Enable Kiosk mode for ChromeOS |
| 1358 const char kEnableKioskMode[] = "enable-kiosk-mode"; | 1358 const char kEnableKioskMode[] = "enable-kiosk-mode"; |
| 1359 | 1359 |
| 1360 // Enables mobile setup in a dialog. | |
| 1361 const char kEnableMobileSetupDialog[] = "enable-mobile-dialog"; | |
| 1362 | |
| 1363 // Enables support for policy-configured networks. | 1360 // Enables support for policy-configured networks. |
| 1364 const char kEnableONCPolicy[] = "enable-onc-policy"; | 1361 const char kEnableONCPolicy[] = "enable-onc-policy"; |
| 1365 | 1362 |
| 1366 // Enables static ip configuration. This flag should be removed when it's on by | 1363 // Enables static ip configuration. This flag should be removed when it's on by |
| 1367 // default. | 1364 // default. |
| 1368 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; | 1365 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; |
| 1369 | 1366 |
| 1370 // Enables discovery and interaction with Bluetooth devices that may not be | 1367 // Enables discovery and interaction with Bluetooth devices that may not be |
| 1371 // supported by ChromeOS. | 1368 // supported by ChromeOS. |
| 1372 const char kEnableUnsupportedBluetoothDevices[] = | 1369 const char kEnableUnsupportedBluetoothDevices[] = |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1508 | 1505 |
| 1509 // ----------------------------------------------------------------------------- | 1506 // ----------------------------------------------------------------------------- |
| 1510 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1507 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1511 // | 1508 // |
| 1512 // You were going to just dump your switches here, weren't you? Instead, please | 1509 // You were going to just dump your switches here, weren't you? Instead, please |
| 1513 // put them in alphabetical order above, or in order inside the appropriate | 1510 // put them in alphabetical order above, or in order inside the appropriate |
| 1514 // ifdef at the bottom. The order should match the header. | 1511 // ifdef at the bottom. The order should match the header. |
| 1515 // ----------------------------------------------------------------------------- | 1512 // ----------------------------------------------------------------------------- |
| 1516 | 1513 |
| 1517 } // namespace switches | 1514 } // namespace switches |
| OLD | NEW |