Index: third_party/WebKit/Source/bindings/tests/results/core/DoubleOrString.cpp |
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/DoubleOrString.cpp b/third_party/WebKit/Source/bindings/tests/results/core/DoubleOrString.cpp |
deleted file mode 100644 |
index ef48b5befa74c5fae7185a96479c0ac895531616..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/Source/bindings/tests/results/core/DoubleOrString.cpp |
+++ /dev/null |
@@ -1,114 +0,0 @@ |
-// Copyright 2014 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. |
- |
-// This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY! |
- |
-#include "DoubleOrString.h" |
- |
-#include "bindings/core/v8/ToV8.h" |
- |
-namespace blink { |
- |
-DoubleOrString::DoubleOrString() |
- : m_type(SpecificTypeNone) |
-{ |
-} |
- |
-double DoubleOrString::getAsDouble() const |
-{ |
- ASSERT(isDouble()); |
- return m_double; |
-} |
- |
-void DoubleOrString::setDouble(double value) |
-{ |
- ASSERT(isNull()); |
- m_double = value; |
- m_type = SpecificTypeDouble; |
-} |
- |
-DoubleOrString DoubleOrString::fromDouble(double value) |
-{ |
- DoubleOrString container; |
- container.setDouble(value); |
- return container; |
-} |
- |
-String DoubleOrString::getAsString() const |
-{ |
- ASSERT(isString()); |
- return m_string; |
-} |
- |
-void DoubleOrString::setString(String value) |
-{ |
- ASSERT(isNull()); |
- m_string = value; |
- m_type = SpecificTypeString; |
-} |
- |
-DoubleOrString DoubleOrString::fromString(String value) |
-{ |
- DoubleOrString container; |
- container.setString(value); |
- return container; |
-} |
- |
-DoubleOrString::DoubleOrString(const DoubleOrString&) = default; |
-DoubleOrString::~DoubleOrString() = default; |
-DoubleOrString& DoubleOrString::operator=(const DoubleOrString&) = default; |
- |
-DEFINE_TRACE(DoubleOrString) |
-{ |
-} |
- |
-void V8DoubleOrString::toImpl(v8::Isolate* isolate, v8::Local<v8::Value> v8Value, DoubleOrString& impl, UnionTypeConversionMode conversionMode, ExceptionState& exceptionState) |
-{ |
- if (v8Value.IsEmpty()) |
- return; |
- |
- if (conversionMode == UnionTypeConversionMode::Nullable && isUndefinedOrNull(v8Value)) |
- return; |
- |
- if (v8Value->IsNumber()) { |
- double cppValue = toRestrictedDouble(isolate, v8Value, exceptionState); |
- if (exceptionState.hadException()) |
- return; |
- impl.setDouble(cppValue); |
- return; |
- } |
- |
- { |
- V8StringResource<> cppValue = v8Value; |
- if (!cppValue.prepare(exceptionState)) |
- return; |
- impl.setString(cppValue); |
- return; |
- } |
- |
-} |
- |
-v8::Local<v8::Value> toV8(const DoubleOrString& impl, v8::Local<v8::Object> creationContext, v8::Isolate* isolate) |
-{ |
- switch (impl.m_type) { |
- case DoubleOrString::SpecificTypeNone: |
- return v8::Null(isolate); |
- case DoubleOrString::SpecificTypeDouble: |
- return v8::Number::New(isolate, impl.getAsDouble()); |
- case DoubleOrString::SpecificTypeString: |
- return v8String(isolate, impl.getAsString()); |
- default: |
- ASSERT_NOT_REACHED(); |
- } |
- return v8::Local<v8::Value>(); |
-} |
- |
-DoubleOrString NativeValueTraits<DoubleOrString>::nativeValue(v8::Isolate* isolate, v8::Local<v8::Value> value, ExceptionState& exceptionState) |
-{ |
- DoubleOrString impl; |
- V8DoubleOrString::toImpl(isolate, value, impl, UnionTypeConversionMode::NotNullable, exceptionState); |
- return impl; |
-} |
- |
-} // namespace blink |