#include "third_party/blink/renderer/core/html/custom/custom_element_reaction_queue.h"
#include "third_party/blink/renderer/core/dom/element.h"
#include "third_party/blink/renderer/core/html/custom/custom_element_reaction.h"
#include "third_party/blink/renderer/platform/instrumentation/tracing/trace_event.h"
namespace blink {
CustomElementReactionQueue::CustomElementReactionQueue() : … { … }
CustomElementReactionQueue::~CustomElementReactionQueue() = default;
void CustomElementReactionQueue::Trace(Visitor* visitor) const { … }
void CustomElementReactionQueue::Add(CustomElementReaction& reaction) { … }
void CustomElementReactionQueue::InvokeReactions(Element& element) { … }
void CustomElementReactionQueue::Clear() { … }
}