#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_ANIMATION_STRING_KEYFRAME_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_ANIMATION_STRING_KEYFRAME_H_
#include "third_party/blink/renderer/core/animation/keyframe.h"
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/css/css_property_value_set.h"
#include "third_party/blink/renderer/platform/heap/collection_support/heap_hash_map.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/text/writing_direction_mode.h"
#include "third_party/blink/renderer/platform/wtf/hash_map.h"
namespace blink {
class CSSPropertyName;
class StyleSheetContents;
class CORE_EXPORT StringKeyframe : public Keyframe { … };
CSSPropertySpecificKeyframe;
SVGPropertySpecificKeyframe;
template <>
struct DowncastTraits<StringKeyframe> { … };
template <>
struct DowncastTraits<CSSPropertySpecificKeyframe> { … };
template <>
struct DowncastTraits<SVGPropertySpecificKeyframe> { … };
}
#endif