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

Side by Side Diff: ui/events/event_handler.h

Issue 2484863005: ui: Cleanup class/struct forward declarations (Closed)
Patch Set: Fix another conflict Created 4 years, 1 month 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 | « ui/events/event_dispatcher.h ('k') | ui/events/ozone/evdev/input_device_factory_evdev.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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef UI_EVENTS_EVENT_HANDLER_H_ 5 #ifndef UI_EVENTS_EVENT_HANDLER_H_
6 #define UI_EVENTS_EVENT_HANDLER_H_ 6 #define UI_EVENTS_EVENT_HANDLER_H_
7 7
8 #include <stack> 8 #include <stack>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "ui/events/event_constants.h" 12 #include "ui/events/event_constants.h"
13 #include "ui/events/events_export.h" 13 #include "ui/events/events_export.h"
14 14
15 namespace ui { 15 namespace ui {
16 16
17 class CancelModeEvent; 17 class CancelModeEvent;
18 class Event; 18 class Event;
19 class EventDispatcher; 19 class EventDispatcher;
20 class EventTarget;
21 class GestureEvent; 20 class GestureEvent;
22 class KeyEvent; 21 class KeyEvent;
23 class MouseEvent; 22 class MouseEvent;
24 class ScrollEvent; 23 class ScrollEvent;
25 class TouchEvent; 24 class TouchEvent;
26 25
27 // Dispatches events to appropriate targets. The default implementations of 26 // Dispatches events to appropriate targets. The default implementations of
28 // all of the specific handlers (e.g. OnKeyEvent, OnMouseEvent) do nothing. 27 // all of the specific handlers (e.g. OnKeyEvent, OnMouseEvent) do nothing.
29 class EVENTS_EXPORT EventHandler { 28 class EVENTS_EXPORT EventHandler {
30 public: 29 public:
(...skipping 26 matching lines...) Expand all
57 std::stack<EventDispatcher*> dispatchers_; 56 std::stack<EventDispatcher*> dispatchers_;
58 57
59 DISALLOW_COPY_AND_ASSIGN(EventHandler); 58 DISALLOW_COPY_AND_ASSIGN(EventHandler);
60 }; 59 };
61 60
62 typedef std::vector<EventHandler*> EventHandlerList; 61 typedef std::vector<EventHandler*> EventHandlerList;
63 62
64 } // namespace ui 63 } // namespace ui
65 64
66 #endif // UI_EVENTS_EVENT_HANDLER_H_ 65 #endif // UI_EVENTS_EVENT_HANDLER_H_
OLDNEW
« no previous file with comments | « ui/events/event_dispatcher.h ('k') | ui/events/ozone/evdev/input_device_factory_evdev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698