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

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

Issue 10824203: Initialize OOBE/login WebUI in hidden state in parallel with wallpaper animation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix how login prompt-visible is emitted 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 | Annotate | Revision Log
« 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 1331 matching lines...) Expand 10 before | Expand all | Expand 10 after
1342 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to 1342 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to
1343 // use Chromium's network stack to fetch, and V8 to evaluate. 1343 // use Chromium's network stack to fetch, and V8 to evaluate.
1344 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; 1344 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver";
1345 1345
1346 #if defined(OS_ANDROID) 1346 #if defined(OS_ANDROID)
1347 // Use the tablet specific UI components when available. 1347 // Use the tablet specific UI components when available.
1348 const char kTabletUI[] = "tablet-ui"; 1348 const char kTabletUI[] = "tablet-ui";
1349 #endif 1349 #endif
1350 1350
1351 #if defined(OS_CHROMEOS) 1351 #if defined(OS_CHROMEOS)
1352 // When wallpaper boot animation is not disabled this switch
1353 // is used to override OOBE/sign in WebUI init type.
1354 // Possible values: parallel|postpone. Default: parallel.
1355 const char kAshWebUIInit[] = "ash-webui-init";
1356
1352 // Disables wallpaper boot animation (except of OOBE case). 1357 // Disables wallpaper boot animation (except of OOBE case).
1353 const char kDisableBootAnimation[] = "disable-boot-animation"; 1358 const char kDisableBootAnimation[] = "disable-boot-animation";
1354 1359
1355 // Disables gdata content provider. 1360 // Disables gdata content provider.
1356 const char kDisableGData[] = "disable-gdata"; 1361 const char kDisableGData[] = "disable-gdata";
1357 1362
1358 // Disables new WebRTC implementation of user image picker. 1363 // Disables new WebRTC implementation of user image picker.
1359 const char kDisableHtml5Camera[] = "disable-html5-camera"; 1364 const char kDisableHtml5Camera[] = "disable-html5-camera";
1360 1365
1361 // Disables new OOBE/sign in design. 1366 // Disables new OOBE/sign in design.
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
1553 1558
1554 // ----------------------------------------------------------------------------- 1559 // -----------------------------------------------------------------------------
1555 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1560 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1556 // 1561 //
1557 // You were going to just dump your switches here, weren't you? Instead, please 1562 // You were going to just dump your switches here, weren't you? Instead, please
1558 // put them in alphabetical order above, or in order inside the appropriate 1563 // put them in alphabetical order above, or in order inside the appropriate
1559 // ifdef at the bottom. The order should match the header. 1564 // ifdef at the bottom. The order should match the header.
1560 // ----------------------------------------------------------------------------- 1565 // -----------------------------------------------------------------------------
1561 1566
1562 } // namespace switches 1567 } // 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