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 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to | 1337 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to |
1338 // use Chromium's network stack to fetch, and V8 to evaluate. | 1338 // use Chromium's network stack to fetch, and V8 to evaluate. |
1339 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; | 1339 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; |
1340 | 1340 |
1341 #if defined(OS_ANDROID) | 1341 #if defined(OS_ANDROID) |
1342 // Use the tablet specific UI components when available. | 1342 // Use the tablet specific UI components when available. |
1343 const char kTabletUI[] = "tablet-ui"; | 1343 const char kTabletUI[] = "tablet-ui"; |
1344 #endif | 1344 #endif |
1345 | 1345 |
1346 #if defined(OS_CHROMEOS) | 1346 #if defined(OS_CHROMEOS) |
| 1347 // Disables wallpaper boot animation (except of OOBE case). |
| 1348 const char kDisableBootAnimation[] = "disable-boot-animation"; |
| 1349 |
1347 // Disables gdata content provider. | 1350 // Disables gdata content provider. |
1348 const char kDisableGData[] = "disable-gdata"; | 1351 const char kDisableGData[] = "disable-gdata"; |
1349 | 1352 |
1350 // Disables new WebRTC implementation of user image picker. | 1353 // Disables new WebRTC implementation of user image picker. |
1351 const char kDisableHtml5Camera[] = "disable-html5-camera"; | 1354 const char kDisableHtml5Camera[] = "disable-html5-camera"; |
1352 | 1355 |
1353 // Disables new OOBE/sign in design. | 1356 // Disables new OOBE/sign in design. |
1354 const char kDisableNewOobe[] = "disable-new-oobe"; | 1357 const char kDisableNewOobe[] = "disable-new-oobe"; |
1355 | 1358 |
1356 // Enables touchpad three-finger-click as middle button. | 1359 // Enables touchpad three-finger-click as middle button. |
(...skipping 24 matching lines...) Expand all Loading... |
1381 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; | 1384 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; |
1382 | 1385 |
1383 // Enables discovery and interaction with Bluetooth devices that may not be | 1386 // Enables discovery and interaction with Bluetooth devices that may not be |
1384 // supported by ChromeOS. | 1387 // supported by ChromeOS. |
1385 const char kEnableUnsupportedBluetoothDevices[] = | 1388 const char kEnableUnsupportedBluetoothDevices[] = |
1386 "enable-unsupported-bluetooth-devices"; | 1389 "enable-unsupported-bluetooth-devices"; |
1387 | 1390 |
1388 // Enables the experimental wallpaper picker UI. | 1391 // Enables the experimental wallpaper picker UI. |
1389 const char kExperimentalWallpaperUI[] = "experimental-wallpaper-ui"; | 1392 const char kExperimentalWallpaperUI[] = "experimental-wallpaper-ui"; |
1390 | 1393 |
| 1394 // Passed to Chrome on first boot. Not passed on restart after sign out. |
| 1395 const char kFirstBoot[] = "first-boot"; |
| 1396 |
1391 // Path for the screensaver used in Kiosk mode | 1397 // Path for the screensaver used in Kiosk mode |
1392 const char kKioskModeScreensaverPath[] = "kiosk-mode-screensaver-path"; | 1398 const char kKioskModeScreensaverPath[] = "kiosk-mode-screensaver-path"; |
1393 | 1399 |
1394 // Enables Chrome-as-a-login-manager behavior. | 1400 // Enables Chrome-as-a-login-manager behavior. |
1395 const char kLoginManager[] = "login-manager"; | 1401 const char kLoginManager[] = "login-manager"; |
1396 | 1402 |
1397 // Allows to override the first login screen. The value should be the name of | 1403 // Allows to override the first login screen. The value should be the name of |
1398 // the first login screen to show (see | 1404 // the first login screen to show (see |
1399 // chrome/browser/chromeos/login/login_wizard_view.cc for actual names). | 1405 // chrome/browser/chromeos/login/login_wizard_view.cc for actual names). |
1400 // Ignored if kLoginManager is not specified. TODO(avayvod): Remove when the | 1406 // Ignored if kLoginManager is not specified. TODO(avayvod): Remove when the |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1543 | 1549 |
1544 // ----------------------------------------------------------------------------- | 1550 // ----------------------------------------------------------------------------- |
1545 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1551 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1546 // | 1552 // |
1547 // You were going to just dump your switches here, weren't you? Instead, please | 1553 // You were going to just dump your switches here, weren't you? Instead, please |
1548 // put them in alphabetical order above, or in order inside the appropriate | 1554 // put them in alphabetical order above, or in order inside the appropriate |
1549 // ifdef at the bottom. The order should match the header. | 1555 // ifdef at the bottom. The order should match the header. |
1550 // ----------------------------------------------------------------------------- | 1556 // ----------------------------------------------------------------------------- |
1551 | 1557 |
1552 } // namespace switches | 1558 } // namespace switches |
OLD | NEW |