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 "V8TestDictionaryDerived.h" | 8 #include "V8TestDictionaryDerived.h" |
9 | 9 |
10 #include "bindings/core/v8/ExceptionState.h" | 10 #include "bindings/core/v8/ExceptionState.h" |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 } | 72 } |
73 | 73 |
74 if (impl.hasDerivedStringMemberWithDefault()) { | 74 if (impl.hasDerivedStringMemberWithDefault()) { |
75 dictionary->Set(v8String(isolate, "derivedStringMemberWithDefault"), v8S
tring(isolate, impl.derivedStringMemberWithDefault())); | 75 dictionary->Set(v8String(isolate, "derivedStringMemberWithDefault"), v8S
tring(isolate, impl.derivedStringMemberWithDefault())); |
76 } else { | 76 } else { |
77 dictionary->Set(v8String(isolate, "derivedStringMemberWithDefault"), v8S
tring(isolate, String("default string value"))); | 77 dictionary->Set(v8String(isolate, "derivedStringMemberWithDefault"), v8S
tring(isolate, String("default string value"))); |
78 } | 78 } |
79 | 79 |
80 } | 80 } |
81 | 81 |
82 TestDictionaryDerivedImplementedAs NativeValueTraits<TestDictionaryDerivedImplem
entedAs>::nativeValue(v8::Local<v8::Value> value, v8::Isolate* isolate, Exceptio
nState& exceptionState) | 82 TestDictionaryDerivedImplementedAs NativeValueTraits<TestDictionaryDerivedImplem
entedAs>::nativeValue(v8::Isolate* isolate, v8::Local<v8::Value> value, Exceptio
nState& exceptionState) |
83 { | 83 { |
84 TestDictionaryDerivedImplementedAs impl; | 84 TestDictionaryDerivedImplementedAs impl; |
85 V8TestDictionaryDerivedImplementedAs::toImpl(isolate, value, impl, exception
State); | 85 V8TestDictionaryDerivedImplementedAs::toImpl(isolate, value, impl, exception
State); |
86 return impl; | 86 return impl; |
87 } | 87 } |
88 | 88 |
89 } // namespace blink | 89 } // namespace blink |
OLD | NEW |