| Index: ash/shell.cc
|
| diff --git a/ash/shell.cc b/ash/shell.cc
|
| index fcbb11a1ddc18d111f12eb747248cd266af9cc0c..df180f879950888877323df9e63aad2b2f95986e 100644
|
| --- a/ash/shell.cc
|
| +++ b/ash/shell.cc
|
| @@ -244,7 +244,7 @@ class DummyUserWallpaperDelegate : public UserWallpaperDelegate {
|
|
|
| virtual ~DummyUserWallpaperDelegate() {}
|
|
|
| - virtual void SetLoggedInUserWallpaper() OVERRIDE {
|
| + virtual void InitializeWallpaper() OVERRIDE {
|
| ash::Shell::GetInstance()->desktop_background_controller()->
|
| CreateEmptyWallpaper();
|
| }
|
| @@ -810,7 +810,7 @@ void Shell::Init() {
|
|
|
| // It needs to be created after OnWindowResized has been called, otherwise the
|
| // widget will not paint when restoring after a browser crash.
|
| - user_wallpaper_delegate_->SetLoggedInUserWallpaper();
|
| + user_wallpaper_delegate_->InitializeWallpaper();
|
|
|
| window_modality_controller_.reset(new internal::WindowModalityController);
|
| AddRootWindowEventFilter(window_modality_controller_.get());
|
|
|