| Index: ash/wm/workspace/multi_window_resize_controller.cc
|
| diff --git a/ash/wm/workspace/multi_window_resize_controller.cc b/ash/wm/workspace/multi_window_resize_controller.cc
|
| index 351e086b1c32c1f9e3d87467cfc37e9020b01ee6..cd450ee7f1758f98bf0a62c38d99e8b6f084f57e 100644
|
| --- a/ash/wm/workspace/multi_window_resize_controller.cc
|
| +++ b/ash/wm/workspace/multi_window_resize_controller.cc
|
| @@ -7,6 +7,7 @@
|
| #include "ash/screen_util.h"
|
| #include "ash/shell.h"
|
| #include "ash/shell_window_ids.h"
|
| +#include "ash/wm/aura/wm_window_aura.h"
|
| #include "ash/wm/window_animations.h"
|
| #include "ash/wm/window_state_aura.h"
|
| #include "ash/wm/workspace/workspace_event_handler.h"
|
| @@ -446,7 +447,8 @@ void MultiWindowResizeController::StartResize(
|
| wm::WindowState* window_state = wm::GetWindowState(windows_.window1);
|
| window_state->CreateDragDetails(location_in_parent, component,
|
| aura::client::WINDOW_MOVE_SOURCE_MOUSE);
|
| - window_resizer_.reset(WorkspaceWindowResizer::Create(window_state, windows));
|
| + window_resizer_.reset(WorkspaceWindowResizer::Create(
|
| + window_state, wm::WmWindowAura::FromAuraWindows(windows)));
|
|
|
| // Do not hide the resize widget while a drag is active.
|
| mouse_watcher_.reset();
|
|
|