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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 if (UNLIKELY(info.Length() < 1)) { | 64 if (UNLIKELY(info.Length() < 1)) { |
65 V8ThrowException::throwException(createMinimumArityTypeErrorForConstruct
or("TestInterfaceNamedConstructor2", 1, info.Length(), info.GetIsolate()), info.
GetIsolate()); | 65 V8ThrowException::throwException(createMinimumArityTypeErrorForConstruct
or("TestInterfaceNamedConstructor2", 1, info.Length(), info.GetIsolate()), info.
GetIsolate()); |
66 return; | 66 return; |
67 } | 67 } |
68 V8StringResource<> stringArg; | 68 V8StringResource<> stringArg; |
69 { | 69 { |
70 TOSTRING_VOID_INTERNAL(stringArg, info[0]); | 70 TOSTRING_VOID_INTERNAL(stringArg, info[0]); |
71 } | 71 } |
72 RefPtr<TestInterfaceNamedConstructor2> impl = TestInterfaceNamedConstructor2
::createForJSConstructor(stringArg); | 72 RefPtr<TestInterfaceNamedConstructor2> impl = TestInterfaceNamedConstructor2
::createForJSConstructor(stringArg); |
73 v8::Handle<v8::Object> wrapper = info.Holder(); | 73 v8::Handle<v8::Object> wrapper = info.Holder(); |
74 V8DOMWrapper::associateObjectWithWrapper<V8TestInterfaceNamedConstructor2>(i
mpl.release(), &V8TestInterfaceNamedConstructor2Constructor::wrapperTypeInfo, wr
apper, info.GetIsolate()); | 74 impl.get()->associateWithWrapper(&V8TestInterfaceNamedConstructor2Constructo
r::wrapperTypeInfo, wrapper, info.GetIsolate()); |
75 v8SetReturnValue(info, wrapper); | 75 v8SetReturnValue(info, wrapper); |
76 } | 76 } |
77 | 77 |
78 v8::Handle<v8::FunctionTemplate> V8TestInterfaceNamedConstructor2Constructor::do
mTemplate(v8::Isolate* isolate) | 78 v8::Handle<v8::FunctionTemplate> V8TestInterfaceNamedConstructor2Constructor::do
mTemplate(v8::Isolate* isolate) |
79 { | 79 { |
80 static int domTemplateKey; // This address is used for a key to look up the
dom template. | 80 static int domTemplateKey; // This address is used for a key to look up the
dom template. |
81 V8PerIsolateData* data = V8PerIsolateData::from(isolate); | 81 V8PerIsolateData* data = V8PerIsolateData::from(isolate); |
82 v8::Local<v8::FunctionTemplate> result = data->existingDOMTemplate(&domTempl
ateKey); | 82 v8::Local<v8::FunctionTemplate> result = data->existingDOMTemplate(&domTempl
ateKey); |
83 if (!result.IsEmpty()) | 83 if (!result.IsEmpty()) |
84 return result; | 84 return result; |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 return 0; | 147 return 0; |
148 } | 148 } |
149 | 149 |
150 template<> | 150 template<> |
151 v8::Handle<v8::Value> toV8NoInline(TestInterfaceNamedConstructor2* impl, v8::Han
dle<v8::Object> creationContext, v8::Isolate* isolate) | 151 v8::Handle<v8::Value> toV8NoInline(TestInterfaceNamedConstructor2* impl, v8::Han
dle<v8::Object> creationContext, v8::Isolate* isolate) |
152 { | 152 { |
153 return toV8(impl, creationContext, isolate); | 153 return toV8(impl, creationContext, isolate); |
154 } | 154 } |
155 | 155 |
156 } // namespace blink | 156 } // namespace blink |
OLD | NEW |