| Index: ash/wm/stacking_controller.cc
|
| diff --git a/ash/wm/stacking_controller.cc b/ash/wm/stacking_controller.cc
|
| index b730d619c3e7f98f43ee57904eafa6103fb45393..723265d0dd13012175f31cab1440c55fd43c10fb 100644
|
| --- a/ash/wm/stacking_controller.cc
|
| +++ b/ash/wm/stacking_controller.cc
|
| @@ -4,8 +4,8 @@
|
|
|
| #include "ash/wm/stacking_controller.h"
|
|
|
| -#include "ash/aura/wm_window_aura.h"
|
| #include "ash/common/wm/container_finder.h"
|
| +#include "ash/common/wm_window.h"
|
|
|
| namespace ash {
|
|
|
| @@ -22,8 +22,8 @@ StackingController::~StackingController() {}
|
| aura::Window* StackingController::GetDefaultParent(aura::Window* context,
|
| aura::Window* window,
|
| const gfx::Rect& bounds) {
|
| - return WmWindowAura::GetAuraWindow(wm::GetDefaultParent(
|
| - WmWindowAura::Get(context), WmWindowAura::Get(window), bounds));
|
| + return WmWindow::GetAuraWindow(wm::GetDefaultParent(
|
| + WmWindow::Get(context), WmWindow::Get(window), bounds));
|
| }
|
|
|
| } // namespace ash
|
|
|