| Index: ash/wm/window_animations.cc
|
| diff --git a/ash/wm/window_animations.cc b/ash/wm/window_animations.cc
|
| index 1dbff6cfb09caf0e734a028e4acef7bc1d17d4dc..3eaf6eb27d53d91dcdb41886a3a3f3d07889a79e 100644
|
| --- a/ash/wm/window_animations.cc
|
| +++ b/ash/wm/window_animations.cc
|
| @@ -9,10 +9,10 @@
|
| #include <utility>
|
| #include <vector>
|
|
|
| -#include "ash/aura/wm_window_aura.h"
|
| #include "ash/common/shelf/wm_shelf.h"
|
| #include "ash/common/wm/window_animation_types.h"
|
| #include "ash/common/wm/workspace_controller.h"
|
| +#include "ash/common/wm_window.h"
|
| #include "ash/screen_util.h"
|
| #include "ash/wm/window_util.h"
|
| #include "base/i18n/rtl.h"
|
| @@ -413,7 +413,7 @@ CreateBrightnessGrayscaleAnimationSequence(float target_value,
|
| }
|
|
|
| gfx::Rect GetMinimizeAnimationTargetBoundsInScreen(aura::Window* window) {
|
| - WmWindow* wm_window = WmWindowAura::Get(window);
|
| + WmWindow* wm_window = WmWindow::Get(window);
|
| WmShelf* shelf = WmShelf::ForWindow(wm_window);
|
| gfx::Rect item_rect = shelf->GetScreenBoundsOfItemIconForWindow(wm_window);
|
|
|
|
|