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 1349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1360 // Enables Drive v2 API instead of Google Documents List API. | 1360 // Enables Drive v2 API instead of Google Documents List API. |
1361 const char kEnableDriveV2Api[] = "enable-drive-v2-api"; | 1361 const char kEnableDriveV2Api[] = "enable-drive-v2-api"; |
1362 | 1362 |
1363 // Enables the redirection of viewable document requests to the Google Document | 1363 // Enables the redirection of viewable document requests to the Google Document |
1364 // Viewer. | 1364 // Viewer. |
1365 const char kEnableGView[] = "enable-gview"; | 1365 const char kEnableGView[] = "enable-gview"; |
1366 | 1366 |
1367 // Enable Kiosk mode for ChromeOS | 1367 // Enable Kiosk mode for ChromeOS |
1368 const char kEnableKioskMode[] = "enable-kiosk-mode"; | 1368 const char kEnableKioskMode[] = "enable-kiosk-mode"; |
1369 | 1369 |
1370 // Enables mobile setup in a dialog. | |
1371 const char kEnableMobileSetupDialog[] = "enable-mobile-dialog"; | |
1372 | |
1373 // Enables support for policy-configured networks. | 1370 // Enables support for policy-configured networks. |
1374 const char kEnableONCPolicy[] = "enable-onc-policy"; | 1371 const char kEnableONCPolicy[] = "enable-onc-policy"; |
1375 | 1372 |
1376 // Enables static ip configuration. This flag should be removed when it's on by | 1373 // Enables static ip configuration. This flag should be removed when it's on by |
1377 // default. | 1374 // default. |
1378 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; | 1375 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; |
1379 | 1376 |
1380 // Enables discovery and interaction with Bluetooth devices that may not be | 1377 // Enables discovery and interaction with Bluetooth devices that may not be |
1381 // supported by ChromeOS. | 1378 // supported by ChromeOS. |
1382 const char kEnableUnsupportedBluetoothDevices[] = | 1379 const char kEnableUnsupportedBluetoothDevices[] = |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1518 | 1515 |
1519 // ----------------------------------------------------------------------------- | 1516 // ----------------------------------------------------------------------------- |
1520 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1517 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1521 // | 1518 // |
1522 // You were going to just dump your switches here, weren't you? Instead, please | 1519 // You were going to just dump your switches here, weren't you? Instead, please |
1523 // put them in alphabetical order above, or in order inside the appropriate | 1520 // put them in alphabetical order above, or in order inside the appropriate |
1524 // ifdef at the bottom. The order should match the header. | 1521 // ifdef at the bottom. The order should match the header. |
1525 // ----------------------------------------------------------------------------- | 1522 // ----------------------------------------------------------------------------- |
1526 | 1523 |
1527 } // namespace switches | 1524 } // namespace switches |
OLD | NEW |