OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 Apple 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 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 12 matching lines...) Expand all Loading... |
23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 */ | 27 */ |
28 | 28 |
29 #ifndef AnimationControllerPrivate_h | 29 #ifndef AnimationControllerPrivate_h |
30 #define AnimationControllerPrivate_h | 30 #define AnimationControllerPrivate_h |
31 | 31 |
32 #include "CSSPropertyNames.h" | 32 #include "CSSPropertyNames.h" |
33 #include "Timer.h" | 33 #include "core/platform/Timer.h" |
34 #include <wtf/HashMap.h> | 34 #include <wtf/HashMap.h> |
35 #include <wtf/HashSet.h> | 35 #include <wtf/HashSet.h> |
36 #include <wtf/PassRefPtr.h> | 36 #include <wtf/PassRefPtr.h> |
37 #include <wtf/RefPtr.h> | 37 #include <wtf/RefPtr.h> |
38 #include <wtf/Vector.h> | |
39 #include <wtf/text/AtomicString.h> | 38 #include <wtf/text/AtomicString.h> |
40 #include <wtf/text/WTFString.h> | 39 #include <wtf/text/WTFString.h> |
| 40 #include <wtf/Vector.h> |
41 | 41 |
42 namespace WebCore { | 42 namespace WebCore { |
43 | 43 |
44 class AnimationBase; | 44 class AnimationBase; |
45 class CompositeAnimation; | 45 class CompositeAnimation; |
46 class Document; | 46 class Document; |
47 class Element; | 47 class Element; |
48 class Frame; | 48 class Frame; |
49 class Node; | 49 class Node; |
50 class RenderObject; | 50 class RenderObject; |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 | 135 |
136 typedef HashSet<RefPtr<AnimationBase> > WaitingAnimationsSet; | 136 typedef HashSet<RefPtr<AnimationBase> > WaitingAnimationsSet; |
137 WaitingAnimationsSet m_animationsWaitingForStyle; | 137 WaitingAnimationsSet m_animationsWaitingForStyle; |
138 WaitingAnimationsSet m_animationsWaitingForStartTimeResponse; | 138 WaitingAnimationsSet m_animationsWaitingForStartTimeResponse; |
139 bool m_waitingForAsyncStartNotification; | 139 bool m_waitingForAsyncStartNotification; |
140 }; | 140 }; |
141 | 141 |
142 } // namespace WebCore | 142 } // namespace WebCore |
143 | 143 |
144 #endif // AnimationControllerPrivate_h | 144 #endif // AnimationControllerPrivate_h |
OLD | NEW |