| Index: ash/desktop_background/desktop_background_view.cc
|
| ===================================================================
|
| --- ash/desktop_background/desktop_background_view.cc (revision 151397)
|
| +++ ash/desktop_background/desktop_background_view.cc (working copy)
|
| @@ -8,7 +8,6 @@
|
|
|
| #include "ash/ash_export.h"
|
| #include "ash/desktop_background/desktop_background_controller.h"
|
| -#include "ash/desktop_background/desktop_background_widget_controller.h"
|
| #include "ash/shell.h"
|
| #include "ash/shell_window_ids.h"
|
| #include "ash/wm/window_animations.h"
|
| @@ -44,14 +43,8 @@
|
| private:
|
| // Overridden from ui::ImplicitAnimationObserver:
|
| virtual void OnImplicitAnimationsCompleted() OVERRIDE {
|
| - ash::Shell* shell = ash::Shell::GetInstance();
|
| - shell->user_wallpaper_delegate()->OnWallpaperAnimationFinished();
|
| - // Only removes old component when wallpaper animation finished. If we
|
| - // remove the old one too early, there will be a white flash during
|
| - // animation.
|
| - internal::DesktopBackgroundWidgetController* component =
|
| - root_window_->GetProperty(kComponentWrapper)->component();
|
| - root_window_->SetProperty(kWindowDesktopComponent, component);
|
| + ash::Shell::GetInstance()->
|
| + user_wallpaper_delegate()->OnWallpaperAnimationFinished();
|
|
|
| MessageLoop::current()->DeleteSoon(FROM_HERE, this);
|
| }
|
| @@ -160,17 +153,8 @@
|
| ash::Shell::GetInstance()->user_wallpaper_delegate()->GetAnimationType();
|
| ash::SetWindowVisibilityAnimationType(desktop_widget->GetNativeView(),
|
| animation_type);
|
| - // Disable animation when creating the first widget. Otherwise, wallpaper
|
| - // will animate from a white screen. Note that boot animation is different.
|
| - // It animates from a white background.
|
| - if (animation_type == ash::WINDOW_VISIBILITY_ANIMATION_TYPE_FADE &&
|
| - NULL == root_window->GetProperty(internal::kWindowDesktopComponent)) {
|
| - ash::SetWindowVisibilityAnimationTransition(desktop_widget->GetNativeView(),
|
| - ash::ANIMATE_NONE);
|
| - } else {
|
| - ash::SetWindowVisibilityAnimationTransition(desktop_widget->GetNativeView(),
|
| - ash::ANIMATE_SHOW);
|
| - }
|
| + ash::SetWindowVisibilityAnimationTransition(desktop_widget->GetNativeView(),
|
| + ash::ANIMATE_SHOW);
|
| desktop_widget->SetBounds(params.parent->bounds());
|
| ui::ScopedLayerAnimationSettings settings(
|
| desktop_widget->GetNativeView()->layer()->GetAnimator());
|
|
|