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

Side by Side Diff: third_party/WebKit/Source/core/dom/ScriptedAnimationController.h

Issue 2812013004: Rewrite references to "wtf/" to "platform/wtf/" in core/{dom,html,xml}. (Closed)
Patch Set: 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) 2011 Google Inc. All Rights Reserved. 2 * Copyright (C) 2011 Google Inc. All Rights Reserved.
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 11 matching lines...) Expand all
22 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 22 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 * 23 *
24 */ 24 */
25 25
26 #ifndef ScriptedAnimationController_h 26 #ifndef ScriptedAnimationController_h
27 #define ScriptedAnimationController_h 27 #define ScriptedAnimationController_h
28 28
29 #include "core/CoreExport.h" 29 #include "core/CoreExport.h"
30 #include "core/dom/FrameRequestCallbackCollection.h" 30 #include "core/dom/FrameRequestCallbackCollection.h"
31 #include "platform/heap/Handle.h" 31 #include "platform/heap/Handle.h"
32 #include "wtf/ListHashSet.h" 32 #include "platform/wtf/ListHashSet.h"
33 #include "wtf/Vector.h" 33 #include "platform/wtf/Vector.h"
34 #include "wtf/text/AtomicString.h" 34 #include "platform/wtf/text/AtomicString.h"
35 #include "wtf/text/StringImpl.h" 35 #include "platform/wtf/text/StringImpl.h"
36 36
37 namespace blink { 37 namespace blink {
38 38
39 class Document; 39 class Document;
40 class Event; 40 class Event;
41 class EventTarget; 41 class EventTarget;
42 class FrameRequestCallback; 42 class FrameRequestCallback;
43 class MediaQueryListListener; 43 class MediaQueryListListener;
44 44
45 class CORE_EXPORT ScriptedAnimationController 45 class CORE_EXPORT ScriptedAnimationController
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 HeapListHashSet<std::pair<Member<const EventTarget>, const StringImpl*>> 98 HeapListHashSet<std::pair<Member<const EventTarget>, const StringImpl*>>
99 per_frame_events_; 99 per_frame_events_;
100 using MediaQueryListListeners = 100 using MediaQueryListListeners =
101 HeapListHashSet<Member<MediaQueryListListener>>; 101 HeapListHashSet<Member<MediaQueryListListener>>;
102 MediaQueryListListeners media_query_list_listeners_; 102 MediaQueryListListeners media_query_list_listeners_;
103 }; 103 };
104 104
105 } // namespace blink 105 } // namespace blink
106 106
107 #endif // ScriptedAnimationController_h 107 #endif // ScriptedAnimationController_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698