#ifndef CC_ANIMATION_SCROLL_TIMELINE_H_
#define CC_ANIMATION_SCROLL_TIMELINE_H_
#include <optional>
#include <vector>
#include "base/time/time.h"
#include "cc/animation/animation_export.h"
#include "cc/animation/animation_timeline.h"
#include "cc/animation/keyframe_model.h"
#include "cc/paint/element_id.h"
namespace cc {
class ScrollTree;
class CC_ANIMATION_EXPORT ScrollTimeline : public AnimationTimeline { … };
inline ScrollTimeline* ToScrollTimeline(AnimationTimeline* timeline) { … }
inline const ScrollTimeline* ToScrollTimeline(
const AnimationTimeline* timeline) { … }
}
#endif