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

Unified Diff: third_party/WebKit/Source/platform/scroll/ProgrammaticScrollAnimator.h

Issue 1616653002: CC Animation: Move files from cc_blink to Source/platform/animation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Fix copyrights and years. Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/scroll/ProgrammaticScrollAnimator.h
diff --git a/third_party/WebKit/Source/platform/scroll/ProgrammaticScrollAnimator.h b/third_party/WebKit/Source/platform/scroll/ProgrammaticScrollAnimator.h
index e936b3c917b72a32123cb3db571ed7db1b8c538b..2e047b6f9995e64e59573eca5f6ebb33e5d49c18 100644
--- a/third_party/WebKit/Source/platform/scroll/ProgrammaticScrollAnimator.h
+++ b/third_party/WebKit/Source/platform/scroll/ProgrammaticScrollAnimator.h
@@ -16,8 +16,8 @@
namespace blink {
class ScrollableArea;
-class WebCompositorAnimationTimeline;
-class WebScrollOffsetAnimationCurve;
+class CompositorAnimationTimeline;
+class CompositorScrollOffsetAnimationCurve;
// Animator for fixed-destination scrolls, such as those triggered by
// CSSOM View scroll APIs.
@@ -40,7 +40,7 @@ public:
void updateCompositorAnimations() override;
void notifyCompositorAnimationFinished(int groupId) override;
void notifyCompositorAnimationAborted(int groupId) override { };
- void layerForCompositedScrollingDidChange(WebCompositorAnimationTimeline*) override;
+ void layerForCompositedScrollingDidChange(CompositorAnimationTimeline*) override;
DECLARE_TRACE();
@@ -50,7 +50,7 @@ private:
void notifyPositionChanged(const DoublePoint&);
RawPtrWillBeMember<ScrollableArea> m_scrollableArea;
- OwnPtr<WebScrollOffsetAnimationCurve> m_animationCurve;
+ OwnPtr<CompositorScrollOffsetAnimationCurve> m_animationCurve;
FloatPoint m_targetOffset;
double m_startTime;
};

Powered by Google App Engine
This is Rietveld 408576698