OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ash/wm/workspace/workspace_event_handler_aura.h" | 5 #include "ash/wm/workspace/workspace_event_handler_aura.h" |
6 | 6 |
7 #include "ash/wm_window.h" | 7 #include "ash/wm/window_util.h" |
8 #include "ui/aura/window.h" | 8 #include "ui/aura/window.h" |
9 #include "ui/events/event.h" | 9 #include "ui/events/event.h" |
10 | 10 |
11 namespace ash { | 11 namespace ash { |
12 | 12 |
13 WorkspaceEventHandlerAura::WorkspaceEventHandlerAura(WmWindow* workspace_window) | 13 WorkspaceEventHandlerAura::WorkspaceEventHandlerAura( |
| 14 aura::Window* workspace_window) |
14 : workspace_window_(workspace_window) { | 15 : workspace_window_(workspace_window) { |
15 workspace_window_->AddLimitedPreTargetHandler(this); | 16 wm::AddLimitedPreTargetHandlerForWindow(this, workspace_window_); |
16 } | 17 } |
17 | 18 |
18 WorkspaceEventHandlerAura::~WorkspaceEventHandlerAura() { | 19 WorkspaceEventHandlerAura::~WorkspaceEventHandlerAura() { |
19 workspace_window_->RemoveLimitedPreTargetHandler(this); | 20 wm::RemoveLimitedPreTargetHandlerForWindow(this, workspace_window_); |
20 } | 21 } |
21 | 22 |
22 void WorkspaceEventHandlerAura::OnMouseEvent(ui::MouseEvent* event) { | 23 void WorkspaceEventHandlerAura::OnMouseEvent(ui::MouseEvent* event) { |
23 WorkspaceEventHandler::OnMouseEvent( | 24 WorkspaceEventHandler::OnMouseEvent( |
24 event, static_cast<aura::Window*>(event->target())); | 25 event, static_cast<aura::Window*>(event->target())); |
25 } | 26 } |
26 | 27 |
27 void WorkspaceEventHandlerAura::OnGestureEvent(ui::GestureEvent* event) { | 28 void WorkspaceEventHandlerAura::OnGestureEvent(ui::GestureEvent* event) { |
28 WorkspaceEventHandler::OnGestureEvent( | 29 WorkspaceEventHandler::OnGestureEvent( |
29 event, static_cast<aura::Window*>(event->target())); | 30 event, static_cast<aura::Window*>(event->target())); |
30 } | 31 } |
31 | 32 |
32 } // namespace ash | 33 } // namespace ash |
OLD | NEW |