blob: e7d7109daa48b334bbbe69529a6aaaa37056ed1b [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(Visitor* visitor) const {
visitor->Trace(definition_);
}
} // namespace blink