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 1326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1337 | 1337 |
1338 #if defined(OS_ANDROID) | 1338 #if defined(OS_ANDROID) |
1339 // Use the tablet specific UI components when available. | 1339 // Use the tablet specific UI components when available. |
1340 const char kTabletUi[] = "tablet-ui"; | 1340 const char kTabletUi[] = "tablet-ui"; |
1341 #endif | 1341 #endif |
1342 | 1342 |
1343 #if defined(OS_CHROMEOS) | 1343 #if defined(OS_CHROMEOS) |
1344 // Disables gdata content provider. | 1344 // Disables gdata content provider. |
1345 const char kDisableGData[] = "disable-gdata"; | 1345 const char kDisableGData[] = "disable-gdata"; |
1346 | 1346 |
1347 // Enables new OOBE/sign in design. | 1347 // Disables new OOBE/sign in design. |
1348 extern const char kEnableNewOobe[] = "enable-new-oobe"; | 1348 extern const char kDisableNewOobe[] = "disable-new-oobe"; |
1349 | 1349 |
1350 // Enables touchpad three-finger-click as middle button. | 1350 // Enables touchpad three-finger-click as middle button. |
1351 const char kEnableTouchpadThreeFingerClick[] | 1351 const char kEnableTouchpadThreeFingerClick[] |
1352 = "touchpad-enable-three-finger-click"; | 1352 = "touchpad-enable-three-finger-click"; |
1353 | 1353 |
1354 // Skips OAuth part of ChromeOS login process. | 1354 // Skips OAuth part of ChromeOS login process. |
1355 const char kSkipOAuthLogin[] = "skip-oauth-login"; | 1355 const char kSkipOAuthLogin[] = "skip-oauth-login"; |
1356 | 1356 |
1357 // Enables device policy support on ChromeOS. | 1357 // Enables device policy support on ChromeOS. |
1358 const char kEnableDevicePolicy[] = "enable-device-policy"; | 1358 const char kEnableDevicePolicy[] = "enable-device-policy"; |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1518 | 1518 |
1519 // ----------------------------------------------------------------------------- | 1519 // ----------------------------------------------------------------------------- |
1520 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1520 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1521 // | 1521 // |
1522 // You were going to just dump your switches here, weren't you? Instead, please | 1522 // 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 | 1523 // put them in alphabetical order above, or in order inside the appropriate |
1524 // ifdef at the bottom. The order should match the header. | 1524 // ifdef at the bottom. The order should match the header. |
1525 // ----------------------------------------------------------------------------- | 1525 // ----------------------------------------------------------------------------- |
1526 | 1526 |
1527 } // namespace switches | 1527 } // namespace switches |
OLD | NEW |