Chromium Code Reviews| Index: ash/accelerators/accelerator_controller.cc |
| diff --git a/ash/accelerators/accelerator_controller.cc b/ash/accelerators/accelerator_controller.cc |
| index 2762f944573416de07351998dba4e09d1683d458..aec345f5fb027cb49daaf12fe83674b291157678 100644 |
| --- a/ash/accelerators/accelerator_controller.cc |
| +++ b/ash/accelerators/accelerator_controller.cc |
| @@ -138,8 +138,10 @@ bool HandleToggleDesktopBackgroundMode() { |
| if (desktop_background_controller->desktop_background_mode() == |
| ash::DesktopBackgroundController::BACKGROUND_IMAGE) |
| desktop_background_controller->SetDesktopBackgroundSolidColorMode(); |
|
Nikita (slow)
2012/05/30 17:25:06
Both blocks should have { }
bshe
2012/05/30 23:33:05
Done.
|
| - else |
| - desktop_background_controller->SetLoggedInUserWallpaper(); |
| + else { |
| + ash::Shell::GetInstance()->user_wallpaper_delegate()-> |
| + SetLoggedInUserWallpaper(); |
| + } |
| return true; |
| } |