#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_STYLE_POSITION_TRY_FALLBACKS_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_STYLE_POSITION_TRY_FALLBACKS_H_
#include <array>
#include "third_party/blink/renderer/core/style/computed_style_constants.h"
#include "third_party/blink/renderer/core/style/position_area.h"
#include "third_party/blink/renderer/core/style/scoped_css_name.h"
#include "third_party/blink/renderer/platform/wtf/hash_set.h"
namespace blink {
TryTacticList;
static inline constexpr TryTacticList kNoTryTactics = …;
class CORE_EXPORT PositionTryFallback { … };
class CORE_EXPORT PositionTryFallbacks
: public GarbageCollected<PositionTryFallbacks> { … };
}
namespace WTF {
template <>
struct VectorTraits<blink::PositionTryFallback>
: VectorTraitsBase<blink::PositionTryFallback> { … };
}
#endif