chromium/third_party/blink/renderer/core/html/custom/custom_element_reaction_queue.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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) {}

// There is one queue per element, so this could be invoked
// recursively.
void CustomElementReactionQueue::InvokeReactions(Element& element) {}

void CustomElementReactionQueue::Clear() {}

}  // namespace blink