#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_ANIMATION_LIST_INTERPOLATION_FUNCTIONS_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_ANIMATION_LIST_INTERPOLATION_FUNCTIONS_H_
#include <memory>
#include "base/functional/function_ref.h"
#include "third_party/blink/renderer/core/animation/interpolation_value.h"
#include "third_party/blink/renderer/core/animation/pairwise_interpolation_value.h"
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/platform/wtf/allocator/allocator.h"
#include "third_party/blink/renderer/platform/wtf/vector.h"
namespace blink {
class UnderlyingValue;
class UnderlyingValueOwner;
class InterpolationType;
class CORE_EXPORT ListInterpolationFunctions { … };
class CORE_EXPORT NonInterpolableList final : public NonInterpolableValue { … };
template <>
struct DowncastTraits<NonInterpolableList> { … };
template <typename CreateItemCallback>
InterpolationValue ListInterpolationFunctions::CreateList(
wtf_size_t length,
CreateItemCallback create_item) { … }
}
#endif