chromium/third_party/blink/renderer/core/testing/union_types_test.cc

// Copyright 2014 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/testing/union_types_test.h"

#include "base/notreached.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_union_double_internalenum.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_union_double_string.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_union_double_string_stringsequence.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_union_element_nodelist.h"
#include "third_party/blink/renderer/platform/wtf/text/string_builder.h"

namespace blink {

V8UnionDoubleOrStringOrStringSequence*
UnionTypesTest::doubleOrStringOrStringSequenceAttribute() const {}

void UnionTypesTest::setDoubleOrStringOrStringSequenceAttribute(
    const V8UnionDoubleOrStringOrStringSequence* value) {}

String UnionTypesTest::doubleOrStringArg(V8UnionDoubleOrString* arg) {}

String UnionTypesTest::doubleOrInternalEnumArg(
    V8UnionDoubleOrInternalEnum* arg) {}

String UnionTypesTest::doubleOrStringSequenceArg(
    HeapVector<Member<V8UnionDoubleOrString>>& sequence) {}

String UnionTypesTest::nodeListOrElementArg(
    const V8UnionElementOrNodeList* arg) {}

String UnionTypesTest::nodeListOrElementOrNullArg(
    const V8UnionElementOrNodeList* arg) {}

String UnionTypesTest::doubleOrStringOrStringSequenceArg(
    const V8UnionDoubleOrStringOrStringSequence* arg) {}

}  // namespace blink