#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_SCHEDULER_MAIN_THREAD_ATTRIBUTION_GROUP_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_SCHEDULER_MAIN_THREAD_ATTRIBUTION_GROUP_H_
#include "third_party/blink/public/common/input/web_input_event_attribution.h"
#include "third_party/blink/renderer/platform/wtf/hash_functions.h"
#include "third_party/blink/renderer/platform/wtf/hash_traits.h"
namespace blink {
namespace scheduler {
struct AttributionGroup { … };
}
}
namespace WTF {
template <>
struct HashTraits<blink::scheduler::AttributionGroup>
: SimpleClassHashTraits<blink::scheduler::AttributionGroup> { … };
}
#endif