chromium/third_party/blink/renderer/core/html/custom/custom_element_test_helpers.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_test_helpers.h"

#include "third_party/blink/renderer/bindings/core/v8/v8_custom_element_constructor.h"
#include "third_party/blink/renderer/core/frame/local_dom_window.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
#include "third_party/blink/renderer/core/html/custom/custom_element_construction_stack.h"

namespace blink {

namespace {

// Creates a mock custom element constructor that has a callback object to be
// hashed, but should never be be invoked.
V8CustomElementConstructor* CreateMockConstructor() {}

}  // namespace

CustomElementTestingScope* CustomElementTestingScope::instance_ =;

CustomElementRegistry& CustomElementTestingScope::Registry() {}

TestCustomElementDefinitionBuilder::TestCustomElementDefinitionBuilder()
    :{}

CustomElementDefinition* TestCustomElementDefinitionBuilder::Build(
    const CustomElementDescriptor& descriptor) {}

TestCustomElementDefinition::TestCustomElementDefinition(
    const CustomElementDescriptor& descriptor)
    :{}

TestCustomElementDefinition::TestCustomElementDefinition(
    const CustomElementDescriptor& descriptor,
    V8CustomElementConstructor* constructor)
    :{}

TestCustomElementDefinition::TestCustomElementDefinition(
    const CustomElementDescriptor& descriptor,
    V8CustomElementConstructor* constructor,
    HashSet<AtomicString>&& observed_attributes,
    const Vector<String>& disabled_features)
    :{}

bool TestCustomElementDefinition::RunConstructor(Element& element) {}

}  // namespace blink