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

Side by Side Diff: components/mus/event_dispatcher.cc

Issue 1351013002: Revert of Mandoline UI Process: Update namespaces and file names (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « components/mus/event_dispatcher.h ('k') | components/mus/focus_controller.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "components/mus/event_dispatcher.h" 5 #include "components/mus/event_dispatcher.h"
6 6
7 #include "components/mus/server_view.h" 7 #include "components/mus/server_view.h"
8 #include "components/mus/view_coordinate_conversions.h" 8 #include "components/mus/view_coordinate_conversions.h"
9 #include "components/mus/view_locator.h" 9 #include "components/mus/view_locator.h"
10 #include "components/mus/view_tree_host_impl.h" 10 #include "components/mus/view_tree_host_impl.h"
11 #include "ui/gfx/geometry/point.h" 11 #include "ui/gfx/geometry/point.h"
12 #include "ui/gfx/geometry/point_f.h" 12 #include "ui/gfx/geometry/point_f.h"
13 13
14 namespace mus { 14 namespace view_manager {
15 15
16 EventDispatcher::EventDispatcher(ViewTreeHostImpl* view_tree_host) 16 EventDispatcher::EventDispatcher(ViewTreeHostImpl* view_tree_host)
17 : view_tree_host_(view_tree_host) {} 17 : view_tree_host_(view_tree_host) {}
18 18
19 EventDispatcher::~EventDispatcher() {} 19 EventDispatcher::~EventDispatcher() {}
20 20
21 void EventDispatcher::AddAccelerator(uint32_t id, 21 void EventDispatcher::AddAccelerator(uint32_t id,
22 mojo::KeyboardCode keyboard_code, 22 mojo::KeyboardCode keyboard_code,
23 mojo::EventFlags flags) { 23 mojo::EventFlags flags) {
24 #if !defined(NDEBUG) 24 #if !defined(NDEBUG)
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 root, target, 85 root, target,
86 gfx::PointF(event->pointer_data->x, event->pointer_data->y))); 86 gfx::PointF(event->pointer_data->x, event->pointer_data->y)));
87 event->pointer_data->x = local_point.x(); 87 event->pointer_data->x = local_point.x();
88 event->pointer_data->y = local_point.y(); 88 event->pointer_data->y = local_point.y();
89 return target; 89 return target;
90 } 90 }
91 91
92 return focused_view; 92 return focused_view;
93 } 93 }
94 94
95 } // namespace mus 95 } // namespace view_manager
OLDNEW
« no previous file with comments | « components/mus/event_dispatcher.h ('k') | components/mus/focus_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698