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

Unified Diff: ash/accelerators/accelerator_controller.cc

Issue 10492003: Use a #fefefe solid color wallpaper background before user login for GAIA login flow (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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
Index: ash/accelerators/accelerator_controller.cc
diff --git a/ash/accelerators/accelerator_controller.cc b/ash/accelerators/accelerator_controller.cc
index c4f21ba47fdff91c1f5a70cf8491f24339879d78..afdb727cfeb0849eaaba3913e3483991cb0b9d67 100644
--- a/ash/accelerators/accelerator_controller.cc
+++ b/ash/accelerators/accelerator_controller.cc
@@ -156,10 +156,11 @@ bool HandleToggleDesktopBackgroundMode() {
ash::Shell::GetInstance()->desktop_background_controller();
if (desktop_background_controller->desktop_background_mode() ==
ash::DesktopBackgroundController::BACKGROUND_IMAGE) {
- desktop_background_controller->SetDesktopBackgroundSolidColorMode();
+ desktop_background_controller->SetDesktopBackgroundSolidColorMode(
+ SK_ColorBLACK);
} else {
ash::Shell::GetInstance()->user_wallpaper_delegate()->
- SetLoggedInUserWallpaper();
+ InitializeWallpaper();
}
return true;
}

Powered by Google App Engine
This is Rietveld 408576698