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 "V8TestInterfaceNamedConstructor2.h" | 8 #include "V8TestInterfaceNamedConstructor2.h" |
9 | 9 |
10 #include "bindings/core/v8/ExceptionState.h" | 10 #include "bindings/core/v8/ExceptionState.h" |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 if (UNLIKELY(info.Length() < 1)) { | 50 if (UNLIKELY(info.Length() < 1)) { |
51 V8ThrowException::throwException(createMinimumArityTypeErrorForConstruct
or("TestInterfaceNamedConstructor2", 1, info.Length(), info.GetIsolate()), info.
GetIsolate()); | 51 V8ThrowException::throwException(createMinimumArityTypeErrorForConstruct
or("TestInterfaceNamedConstructor2", 1, info.Length(), info.GetIsolate()), info.
GetIsolate()); |
52 return; | 52 return; |
53 } | 53 } |
54 V8StringResource<> stringArg; | 54 V8StringResource<> stringArg; |
55 { | 55 { |
56 TOSTRING_VOID_INTERNAL(stringArg, info[0]); | 56 TOSTRING_VOID_INTERNAL(stringArg, info[0]); |
57 } | 57 } |
58 RefPtr<TestInterfaceNamedConstructor2> impl = TestInterfaceNamedConstructor2
::createForJSConstructor(stringArg); | 58 RefPtr<TestInterfaceNamedConstructor2> impl = TestInterfaceNamedConstructor2
::createForJSConstructor(stringArg); |
59 v8::Handle<v8::Object> wrapper = info.Holder(); | 59 v8::Handle<v8::Object> wrapper = info.Holder(); |
60 V8DOMWrapper::associateObjectWithWrapper<V8TestInterfaceNamedConstructor2>(i
mpl.release(), &V8TestInterfaceNamedConstructor2Constructor::wrapperTypeInfo, wr
apper, info.GetIsolate()); | 60 impl->associateWithWrapper(&V8TestInterfaceNamedConstructor2Constructor::wra
pperTypeInfo, wrapper, info.GetIsolate()); |
61 v8SetReturnValue(info, wrapper); | 61 v8SetReturnValue(info, wrapper); |
62 } | 62 } |
63 | 63 |
64 v8::Handle<v8::FunctionTemplate> V8TestInterfaceNamedConstructor2Constructor::do
mTemplate(v8::Isolate* isolate) | 64 v8::Handle<v8::FunctionTemplate> V8TestInterfaceNamedConstructor2Constructor::do
mTemplate(v8::Isolate* isolate) |
65 { | 65 { |
66 static int domTemplateKey; // This address is used for a key to look up the
dom template. | 66 static int domTemplateKey; // This address is used for a key to look up the
dom template. |
67 V8PerIsolateData* data = V8PerIsolateData::from(isolate); | 67 V8PerIsolateData* data = V8PerIsolateData::from(isolate); |
68 v8::Local<v8::FunctionTemplate> result = data->existingDOMTemplate(&domTempl
ateKey); | 68 v8::Local<v8::FunctionTemplate> result = data->existingDOMTemplate(&domTempl
ateKey); |
69 if (!result.IsEmpty()) | 69 if (!result.IsEmpty()) |
70 return result; | 70 return result; |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 return 0; | 133 return 0; |
134 } | 134 } |
135 | 135 |
136 template<> | 136 template<> |
137 v8::Handle<v8::Value> toV8NoInline(TestInterfaceNamedConstructor2* impl, v8::Han
dle<v8::Object> creationContext, v8::Isolate* isolate) | 137 v8::Handle<v8::Value> toV8NoInline(TestInterfaceNamedConstructor2* impl, v8::Han
dle<v8::Object> creationContext, v8::Isolate* isolate) |
138 { | 138 { |
139 return toV8(impl, creationContext, isolate); | 139 return toV8(impl, creationContext, isolate); |
140 } | 140 } |
141 | 141 |
142 } // namespace blink | 142 } // namespace blink |
OLD | NEW |