Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(415)

Side by Side Diff: ash/wm/workspace/workspace_event_handler_aura.cc

Issue 2908793002: [mus+ash] Removes WmWindow from ash/wm/overview and ash/wm/workspace (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
OLDNEW
« no previous file with comments | « ash/wm/workspace/workspace_event_handler_aura.h ('k') | ash/wm/workspace/workspace_layout_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698