| Index: ash/wm/overview/scoped_overview_animation_settings_factory_aura.cc
|
| diff --git a/ash/wm/overview/scoped_overview_animation_settings_factory_aura.cc b/ash/wm/overview/scoped_overview_animation_settings_factory_aura.cc
|
| index 2feed273d99d50f71bb564474beeb2035e243750..1bdfe42864b6d735b40b8fca1a199ea194731bae 100644
|
| --- a/ash/wm/overview/scoped_overview_animation_settings_factory_aura.cc
|
| +++ b/ash/wm/overview/scoped_overview_animation_settings_factory_aura.cc
|
| @@ -5,8 +5,8 @@
|
| #include "ash/wm/overview/scoped_overview_animation_settings_factory_aura.h"
|
|
|
| #include "ash/wm/overview/scoped_overview_animation_settings_aura.h"
|
| -#include "ash/wm_window.h"
|
| #include "base/memory/ptr_util.h"
|
| +#include "ui/aura/window.h"
|
|
|
| namespace ash {
|
|
|
| @@ -19,9 +19,9 @@ ScopedOverviewAnimationSettingsFactoryAura::
|
| std::unique_ptr<ScopedOverviewAnimationSettings>
|
| ScopedOverviewAnimationSettingsFactoryAura::CreateOverviewAnimationSettings(
|
| OverviewAnimationType animation_type,
|
| - WmWindow* window) {
|
| - return base::MakeUnique<ScopedOverviewAnimationSettingsAura>(
|
| - animation_type, WmWindow::GetAuraWindow(window));
|
| + aura::Window* window) {
|
| + return base::MakeUnique<ScopedOverviewAnimationSettingsAura>(animation_type,
|
| + window);
|
| }
|
|
|
| } // namespace ash
|
|
|