| Index: ash/wm/workspace/workspace_event_handler_aura.cc
|
| diff --git a/ash/wm/workspace/workspace_event_handler_aura.cc b/ash/wm/workspace/workspace_event_handler_aura.cc
|
| index 5fd42e4616d634d54da6b08e7cb7b4db548fc1c7..495c4bc2eb1915400e716e789aacf1e7973885e9 100644
|
| --- a/ash/wm/workspace/workspace_event_handler_aura.cc
|
| +++ b/ash/wm/workspace/workspace_event_handler_aura.cc
|
| @@ -4,7 +4,7 @@
|
|
|
| #include "ash/wm/workspace/workspace_event_handler_aura.h"
|
|
|
| -#include "ash/aura/wm_window_aura.h"
|
| +#include "ash/common/wm_window.h"
|
| #include "ui/aura/window.h"
|
| #include "ui/events/event.h"
|
|
|
| @@ -21,12 +21,12 @@ WorkspaceEventHandlerAura::~WorkspaceEventHandlerAura() {
|
|
|
| void WorkspaceEventHandlerAura::OnMouseEvent(ui::MouseEvent* event) {
|
| WorkspaceEventHandler::OnMouseEvent(
|
| - event, WmWindowAura::Get(static_cast<aura::Window*>(event->target())));
|
| + event, WmWindow::Get(static_cast<aura::Window*>(event->target())));
|
| }
|
|
|
| void WorkspaceEventHandlerAura::OnGestureEvent(ui::GestureEvent* event) {
|
| WorkspaceEventHandler::OnGestureEvent(
|
| - event, WmWindowAura::Get(static_cast<aura::Window*>(event->target())));
|
| + event, WmWindow::Get(static_cast<aura::Window*>(event->target())));
|
| }
|
|
|
| } // namespace ash
|
|
|