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

Unified Diff: chrome/browser/chromeos/login/webui_login_display_host.cc

Issue 10825424: Merge 152060 - Add --disable-oobe-animation flag to disable OOBE animation on slow hardware (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1229/src/
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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chromeos/login/login_utils.cc ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/webui_login_display_host.cc
===================================================================
--- chrome/browser/chromeos/login/webui_login_display_host.cc (revision 152109)
+++ chrome/browser/chromeos/login/webui_login_display_host.cc (working copy)
@@ -71,6 +71,8 @@
bool is_registered = WizardController::IsDeviceRegistered();
bool zero_delay_enabled = WizardController::IsZeroDelayEnabled();
if (!CommandLine::ForCurrentProcess()->HasSwitch(switches::kDisableNewOobe) &&
+ !CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kDisableOobeAnimation) &&
!zero_delay_enabled) {
bool disable_boot_animation = CommandLine::ForCurrentProcess()->
HasSwitch(switches::kDisableBootAnimation);
@@ -139,7 +141,7 @@
}
void WebUILoginDisplayHost::SetStatusAreaVisible(bool visible) {
- if (waiting_for_wallpaper_load_ && initialize_webui_in_parallel_)
+ if (waiting_for_wallpaper_load_ && initialize_webui_in_parallel_)
status_area_saved_visibility_ = visible;
else if (login_view_)
login_view_->SetStatusAreaVisible(visible);
« no previous file with comments | « chrome/browser/chromeos/login/login_utils.cc ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698