| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY! | 5 // This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY! |
| 6 | 6 |
| 7 #include "config.h" | 7 #include "config.h" |
| 8 #include "bindings/modules/v8/UnionTypesModules.h" | 8 #include "bindings/modules/v8/UnionTypesModules.h" |
| 9 | 9 |
| 10 | 10 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 { | 59 { |
| 60 if (v8Value.IsEmpty()) | 60 if (v8Value.IsEmpty()) |
| 61 return; | 61 return; |
| 62 | 62 |
| 63 if (v8Value->IsBoolean()) { | 63 if (v8Value->IsBoolean()) { |
| 64 impl.setBoolean(v8Value->ToBoolean()->Value()); | 64 impl.setBoolean(v8Value->ToBoolean()->Value()); |
| 65 return; | 65 return; |
| 66 } | 66 } |
| 67 | 67 |
| 68 { | 68 { |
| 69 TOSTRING_VOID_EXCEPTIONSTATE(V8StringResource<>, cppValue, v8Value, exce
ptionState); | 69 V8StringResource<> cppValue = v8Value; |
| 70 if (!cppValue.prepare(exceptionState)) |
| 71 return; |
| 70 impl.setString(cppValue); | 72 impl.setString(cppValue); |
| 71 return; | 73 return; |
| 72 } | 74 } |
| 73 | 75 |
| 74 } | 76 } |
| 75 | 77 |
| 76 v8::Local<v8::Value> toV8(const BooleanOrString& impl, v8::Local<v8::Object> cre
ationContext, v8::Isolate* isolate) | 78 v8::Local<v8::Value> toV8(const BooleanOrString& impl, v8::Local<v8::Object> cre
ationContext, v8::Isolate* isolate) |
| 77 { | 79 { |
| 78 switch (impl.m_type) { | 80 switch (impl.m_type) { |
| 79 case BooleanOrString::SpecificTypeNone: | 81 case BooleanOrString::SpecificTypeNone: |
| 80 return v8::Null(isolate); | 82 return v8::Null(isolate); |
| 81 case BooleanOrString::SpecificTypeBoolean: | 83 case BooleanOrString::SpecificTypeBoolean: |
| 82 return v8Boolean(impl.getAsBoolean(), isolate); | 84 return v8Boolean(impl.getAsBoolean(), isolate); |
| 83 case BooleanOrString::SpecificTypeString: | 85 case BooleanOrString::SpecificTypeString: |
| 84 return v8String(isolate, impl.getAsString()); | 86 return v8String(isolate, impl.getAsString()); |
| 85 default: | 87 default: |
| 86 ASSERT_NOT_REACHED(); | 88 ASSERT_NOT_REACHED(); |
| 87 } | 89 } |
| 88 return v8::Local<v8::Value>(); | 90 return v8::Local<v8::Value>(); |
| 89 } | 91 } |
| 90 | 92 |
| 91 BooleanOrString NativeValueTraits<BooleanOrString>::nativeValue(const v8::Local<
v8::Value>& value, v8::Isolate* isolate, ExceptionState& exceptionState) | 93 BooleanOrString NativeValueTraits<BooleanOrString>::nativeValue(const v8::Local<
v8::Value>& value, v8::Isolate* isolate, ExceptionState& exceptionState) |
| 92 { | 94 { |
| 93 BooleanOrString impl; | 95 BooleanOrString impl; |
| 94 V8BooleanOrString::toImpl(isolate, value, impl, exceptionState); | 96 V8BooleanOrString::toImpl(isolate, value, impl, exceptionState); |
| 95 return impl; | 97 return impl; |
| 96 } | 98 } |
| 97 | 99 |
| 98 } // namespace blink | 100 } // namespace blink |
| OLD | NEW |