blob: dfed4f8097449d9a86d959052d72ce3ce8a8a057 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// 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.h"
#include "third_party/blink/renderer/core/html/custom/custom_element_definition.h"
namespace blink {
CustomElementReaction::CustomElementReaction(
CustomElementDefinition& definition)
: definition_(definition) {}
void CustomElementReaction::Trace(blink::Visitor* visitor) {
visitor->Trace(definition_);
}
} // namespace blink