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

Side by Side Diff: third_party/WebKit/Source/core/events/GenericEventQueue.h

Issue 2818083002: Rewrite references to "wtf/" to "platform/wtf/" in the rest of core/. (Closed)
Patch Set: Rebase. Created 3 years, 8 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 /* 1 /*
2 * Copyright (C) 2012 Victor Carbune (victor@rosedu.org) 2 * Copyright (C) 2012 Victor Carbune (victor@rosedu.org)
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 12 matching lines...) Expand all
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #ifndef GenericEventQueue_h 26 #ifndef GenericEventQueue_h
27 #define GenericEventQueue_h 27 #define GenericEventQueue_h
28 28
29 #include "core/CoreExport.h" 29 #include "core/CoreExport.h"
30 #include "core/events/EventQueue.h" 30 #include "core/events/EventQueue.h"
31 #include "core/events/EventTarget.h" 31 #include "core/events/EventTarget.h"
32 #include "platform/Timer.h" 32 #include "platform/Timer.h"
33 #include "wtf/RefPtr.h" 33 #include "platform/wtf/RefPtr.h"
34 #include "wtf/Vector.h" 34 #include "platform/wtf/Vector.h"
35 35
36 namespace blink { 36 namespace blink {
37 37
38 class CORE_EXPORT GenericEventQueue final : public EventQueue { 38 class CORE_EXPORT GenericEventQueue final : public EventQueue {
39 public: 39 public:
40 static GenericEventQueue* Create(EventTarget*); 40 static GenericEventQueue* Create(EventTarget*);
41 ~GenericEventQueue() override; 41 ~GenericEventQueue() override;
42 42
43 // EventQueue 43 // EventQueue
44 DECLARE_VIRTUAL_TRACE(); 44 DECLARE_VIRTUAL_TRACE();
(...skipping 11 matching lines...) Expand all
56 Member<EventTarget> owner_; 56 Member<EventTarget> owner_;
57 HeapVector<Member<Event>> pending_events_; 57 HeapVector<Member<Event>> pending_events_;
58 Timer<GenericEventQueue> timer_; 58 Timer<GenericEventQueue> timer_;
59 59
60 bool is_closed_; 60 bool is_closed_;
61 }; 61 };
62 62
63 } // namespace blink 63 } // namespace blink
64 64
65 #endif 65 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/events/EventTarget.cpp ('k') | third_party/WebKit/Source/core/events/GestureEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698