OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 ProgrammaticScrollAnimator_h | 5 #ifndef ProgrammaticScrollAnimator_h |
6 #define ProgrammaticScrollAnimator_h | 6 #define ProgrammaticScrollAnimator_h |
7 | 7 |
8 #include "platform/geometry/FloatPoint.h" | 8 #include "platform/geometry/FloatPoint.h" |
9 #include "public/platform/WebCompositorAnimationDelegate.h" | 9 #include "public/platform/WebCompositorAnimationDelegate.h" |
10 #include "public/platform/WebCompositorAnimationPlayerClient.h" | 10 #include "public/platform/WebCompositorAnimationPlayerClient.h" |
11 #include "wtf/FastAllocBase.h" | 11 #include "wtf/Allocator.h" |
12 #include "wtf/Noncopyable.h" | 12 #include "wtf/Noncopyable.h" |
13 #include "wtf/OwnPtr.h" | 13 #include "wtf/OwnPtr.h" |
14 #include "wtf/PassOwnPtr.h" | 14 #include "wtf/PassOwnPtr.h" |
15 | 15 |
16 namespace blink { | 16 namespace blink { |
17 | 17 |
18 class ScrollableArea; | 18 class ScrollableArea; |
19 class WebCompositorAnimationPlayer; | 19 class WebCompositorAnimationPlayer; |
20 class WebCompositorAnimationTimeline; | 20 class WebCompositorAnimationTimeline; |
21 class WebScrollOffsetAnimationCurve; | 21 class WebScrollOffsetAnimationCurve; |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 FloatPoint m_targetOffset; | 80 FloatPoint m_targetOffset; |
81 double m_startTime; | 81 double m_startTime; |
82 RunState m_runState; | 82 RunState m_runState; |
83 int m_compositorAnimationId; | 83 int m_compositorAnimationId; |
84 int m_compositorAnimationGroupId; | 84 int m_compositorAnimationGroupId; |
85 }; | 85 }; |
86 | 86 |
87 } // namespace blink | 87 } // namespace blink |
88 | 88 |
89 #endif // ProgrammaticScrollAnimator_h | 89 #endif // ProgrammaticScrollAnimator_h |
OLD | NEW |