Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(951)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 10834081: Enable wallpaper boot animation for boot into sign in too. Add flag to disable it. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: . Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
1528 1531
1529 // ----------------------------------------------------------------------------- 1532 // -----------------------------------------------------------------------------
1530 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1533 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1531 // 1534 //
1532 // You were going to just dump your switches here, weren't you? Instead, please 1535 // You were going to just dump your switches here, weren't you? Instead, please
1533 // put them in alphabetical order above, or in order inside the appropriate 1536 // put them in alphabetical order above, or in order inside the appropriate
1534 // ifdef at the bottom. The order should match the header. 1537 // ifdef at the bottom. The order should match the header.
1535 // ----------------------------------------------------------------------------- 1538 // -----------------------------------------------------------------------------
1536 1539
1537 } // namespace switches 1540 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698