#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_INSPECTOR_INVALIDATION_SET_TO_SELECTOR_MAP_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_INSPECTOR_INVALIDATION_SET_TO_SELECTOR_MAP_H_
#include "third_party/blink/renderer/core/css/style_rule.h"
#include "third_party/blink/renderer/platform/heap/collection_support/heap_hash_map.h"
#include "third_party/blink/renderer/platform/heap/collection_support/heap_hash_set.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/heap/member.h"
#include "third_party/blink/renderer/platform/heap/persistent.h"
#include "third_party/blink/renderer/platform/wtf/text/atomic_string.h"
namespace blink {
class InvalidationSet;
class StyleEngine;
class StyleRule;
class CORE_EXPORT InvalidationSetToSelectorMap final
: public GarbageCollected<InvalidationSetToSelectorMap> { … };
}
namespace WTF {
template <>
struct HashTraits<blink::InvalidationSetToSelectorMap::IndexedSelector>
: TwoFieldsHashTraits<
blink::InvalidationSetToSelectorMap::IndexedSelector,
&blink::InvalidationSetToSelectorMap::IndexedSelector::style_rule_,
&blink::InvalidationSetToSelectorMap::IndexedSelector::
selector_index_> { … };
template <>
struct HashTraits<
blink::Member<blink::InvalidationSetToSelectorMap::IndexedSelector>>
: MemberHashTraits<blink::InvalidationSetToSelectorMap::IndexedSelector> { … };
}
#endif