Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(210)

Side by Side Diff: Source/bindings/tests/results/V8TestInterfaceNamedConstructor2.cpp

Issue 542113003: bindings: Introduces ScriptWrappable::associateWithWrapper in addition to wrap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698