#ifndef CC_ANIMATION_ANIMATION_TIMELINE_H_
#define CC_ANIMATION_ANIMATION_TIMELINE_H_
#include <memory>
#include <unordered_map>
#include <vector>
#include "base/memory/raw_ptr.h"
#include "base/memory/ref_counted.h"
#include "cc/animation/animation_export.h"
#include "cc/base/protected_sequence_synchronizer.h"
#include "cc/paint/element_id.h"
namespace base {
class TimeTicks;
}
namespace cc {
class Animation;
class AnimationHost;
class ScrollTree;
class CC_ANIMATION_EXPORT AnimationTimeline
: public base::RefCounted<AnimationTimeline>,
public ProtectedSequenceSynchronizer { … };
}
#endif