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

Side by Side Diff: ash/pointer_watcher_delegate_aura.h

Issue 2267023003: ash: Eliminate PointerWatcherDelegate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 | « ash/mus/shell_delegate_mus.cc ('k') | ash/pointer_watcher_delegate_aura.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "ash/ash_export.h"
6 #include "ash/common/pointer_watcher_delegate.h"
7 #include "base/macros.h"
8 #include "base/observer_list.h"
9 #include "ui/events/event_handler.h"
10
11 namespace gfx {
12 class Point;
13 }
14
15 namespace ui {
16 class LocatedEvent;
17 class PointerEvent;
18 }
19
20 namespace views {
21 class Widget;
22 }
23
24 namespace ash {
25
26 // Support for PointerWatchers in non-mus ash, implemented with a pre-target
27 // EventHandler on the Shell.
28 class ASH_EXPORT PointerWatcherDelegateAura : public PointerWatcherDelegate,
29 public ui::EventHandler {
30 public:
31 PointerWatcherDelegateAura();
32 ~PointerWatcherDelegateAura() override;
33
34 // PointerWatcherDelegate:
35 void AddPointerWatcher(views::PointerWatcher* watcher,
36 bool wants_moves) override;
37 void RemovePointerWatcher(views::PointerWatcher* watcher) override;
38
39 // ui::EventHandler:
40 void OnMouseEvent(ui::MouseEvent* event) override;
41 void OnTouchEvent(ui::TouchEvent* event) override;
42
43 private:
44 gfx::Point GetLocationInScreen(const ui::LocatedEvent& event) const;
45 views::Widget* GetTargetWidget(const ui::LocatedEvent& event) const;
46
47 // Calls OnPointerEventObserved() on the appropriate set of watchers as
48 // determined by the type of event. |original_event| is the original
49 // event supplied to OnMouseEvent()/OnTouchEvent(), |pointer_event| is
50 // |original_event| converted to a PointerEvent.
51 void NotifyWatchers(const ui::PointerEvent& pointer_event,
52 const ui::LocatedEvent& original_event);
53
54 // The true parameter to ObserverList indicates the list must be empty on
55 // destruction. Two sets of observers are maintained, one for observers not
56 // needing moves |non_move_watchers_| and |move_watchers_| for those
57 // observers wanting moves too.
58 base::ObserverList<views::PointerWatcher, true> non_move_watchers_;
59 base::ObserverList<views::PointerWatcher, true> move_watchers_;
60
61 DISALLOW_COPY_AND_ASSIGN(PointerWatcherDelegateAura);
62 };
63
64 } // namespace ash
OLDNEW
« no previous file with comments | « ash/mus/shell_delegate_mus.cc ('k') | ash/pointer_watcher_delegate_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698