| Index: ash/wm/workspace/workspace_event_handler.cc
|
| diff --git a/ash/wm/workspace/workspace_event_handler.cc b/ash/wm/workspace/workspace_event_handler.cc
|
| index afd017bb0e8bacea4a2de7bffe13d8844074a046..b57a9bfdc538b288385a3cffe8f3dd2f5f7e898a 100644
|
| --- a/ash/wm/workspace/workspace_event_handler.cc
|
| +++ b/ash/wm/workspace/workspace_event_handler.cc
|
| @@ -8,6 +8,7 @@
|
| #include "ash/shell.h"
|
| #include "ash/touch/touch_uma.h"
|
| #include "ash/wm/window_state.h"
|
| +#include "ash/wm/window_state_aura.h"
|
| #include "ash/wm/wm_event.h"
|
| #include "ui/aura/window.h"
|
| #include "ui/aura/window_delegate.h"
|
| @@ -110,7 +111,7 @@ void WorkspaceEventHandler::OnGestureEvent(ui::GestureEvent* event) {
|
| void WorkspaceEventHandler::HandleVerticalResizeDoubleClick(
|
| wm::WindowState* target_state,
|
| ui::MouseEvent* event) {
|
| - aura::Window* target = target_state->window();
|
| + aura::Window* target = target_state->aura_window();
|
| if (event->flags() & ui::EF_IS_DOUBLE_CLICK) {
|
| int component =
|
| target->delegate()->GetNonClientComponent(event->location());
|
|
|