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

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

Issue 340763003: Change [ConstructorCallWith={Document => ExecutionContext}] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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
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 "V8TestInterfaceNamedConstructor.h" 8 #include "V8TestInterfaceNamedConstructor.h"
9 9
10 #include "RuntimeEnabledFeatures.h" 10 #include "RuntimeEnabledFeatures.h"
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 if (!info.IsConstructCall()) { 78 if (!info.IsConstructCall()) {
79 throwTypeError(ExceptionMessages::constructorNotCallableAsFunction("Audi o"), isolate); 79 throwTypeError(ExceptionMessages::constructorNotCallableAsFunction("Audi o"), isolate);
80 return; 80 return;
81 } 81 }
82 82
83 if (ConstructorMode::current(isolate) == ConstructorMode::WrapExistingObject ) { 83 if (ConstructorMode::current(isolate) == ConstructorMode::WrapExistingObject ) {
84 v8SetReturnValue(info, info.Holder()); 84 v8SetReturnValue(info, info.Holder());
85 return; 85 return;
86 } 86 }
87 87
88 Document* documentPtr = currentDOMWindow(isolate)->document(); 88 ExecutionContext* executionContext = currentExecutionContext(info.GetIsolate ());
89
90 Document* documentPtr = toDocument(executionContext);
89 ASSERT(documentPtr); 91 ASSERT(documentPtr);
90 Document& document = *documentPtr;
91 92
92 // Make sure the document is added to the DOM Node map. Otherwise, the TestI nterfaceNamedConstructor instance 93 // Make sure the document is added to the DOM Node map. Otherwise, the TestI nterfaceNamedConstructor instance
93 // may end up being the only node in the map and get garbage-collected prema turely. 94 // may end up being the only node in the map and get garbage-collected prema turely.
94 toV8(documentPtr, info.Holder(), isolate); 95 toV8(documentPtr, info.Holder(), isolate);
95 96
96 ExceptionState exceptionState(ExceptionState::ConstructionContext, "TestInte rfaceNamedConstructor", info.Holder(), isolate); 97 ExceptionState exceptionState(ExceptionState::ConstructionContext, "TestInte rfaceNamedConstructor", info.Holder(), isolate);
97 if (UNLIKELY(info.Length() < 1)) { 98 if (UNLIKELY(info.Length() < 1)) {
98 throwMinimumArityTypeError(exceptionState, 1, info.Length()); 99 throwMinimumArityTypeError(exceptionState, 1, info.Length());
99 return; 100 return;
100 } 101 }
101 V8StringResource<> stringArg; 102 V8StringResource<> stringArg;
102 bool defaultUndefinedOptionalBooleanArg; 103 bool defaultUndefinedOptionalBooleanArg;
103 int defaultUndefinedOptionalLongArg; 104 int defaultUndefinedOptionalLongArg;
104 V8StringResource<> defaultUndefinedOptionalStringArg; 105 V8StringResource<> defaultUndefinedOptionalStringArg;
105 V8StringResource<> defaultNullStringOptionalstringArg; 106 V8StringResource<> defaultNullStringOptionalstringArg;
106 V8StringResource<> optionalStringArg; 107 V8StringResource<> optionalStringArg;
107 { 108 {
108 v8::TryCatch block; 109 v8::TryCatch block;
109 V8RethrowTryCatchScope rethrow(block); 110 V8RethrowTryCatchScope rethrow(block);
110 TOSTRING_VOID_INTERNAL(stringArg, info[0]); 111 TOSTRING_VOID_INTERNAL(stringArg, info[0]);
111 TONATIVE_VOID_INTERNAL(defaultUndefinedOptionalBooleanArg, info[1]->Bool eanValue()); 112 TONATIVE_VOID_INTERNAL(defaultUndefinedOptionalBooleanArg, info[1]->Bool eanValue());
112 TONATIVE_VOID_EXCEPTIONSTATE_INTERNAL(defaultUndefinedOptionalLongArg, t oInt32(info[2], exceptionState), exceptionState); 113 TONATIVE_VOID_EXCEPTIONSTATE_INTERNAL(defaultUndefinedOptionalLongArg, t oInt32(info[2], exceptionState), exceptionState);
113 TOSTRING_VOID_INTERNAL(defaultUndefinedOptionalStringArg, info[3]); 114 TOSTRING_VOID_INTERNAL(defaultUndefinedOptionalStringArg, info[3]);
114 TOSTRING_VOID_INTERNAL(defaultNullStringOptionalstringArg, argumentOrNul l(info, 4)); 115 TOSTRING_VOID_INTERNAL(defaultNullStringOptionalstringArg, argumentOrNul l(info, 4));
115 if (UNLIKELY(info.Length() <= 5)) { 116 if (UNLIKELY(info.Length() <= 5)) {
116 RefPtr<TestInterfaceNamedConstructor> impl = TestInterfaceNamedConst ructor::createForJSConstructor(document, stringArg, defaultUndefinedOptionalBool eanArg, defaultUndefinedOptionalLongArg, defaultUndefinedOptionalStringArg, defa ultNullStringOptionalstringArg, exceptionState); 117 RefPtr<TestInterfaceNamedConstructor> impl = TestInterfaceNamedConst ructor::createForJSConstructor(executionContext, stringArg, defaultUndefinedOpti onalBooleanArg, defaultUndefinedOptionalLongArg, defaultUndefinedOptionalStringA rg, defaultNullStringOptionalstringArg, exceptionState);
117 v8::Handle<v8::Object> wrapper = info.Holder(); 118 v8::Handle<v8::Object> wrapper = info.Holder();
118 V8DOMWrapper::associateObjectWithWrapper<V8TestInterfaceNamedConstru ctor>(impl.release(), &V8TestInterfaceNamedConstructorConstructor::wrapperTypeIn fo, wrapper, isolate, WrapperConfiguration::Dependent); 119 V8DOMWrapper::associateObjectWithWrapper<V8TestInterfaceNamedConstru ctor>(impl.release(), &V8TestInterfaceNamedConstructorConstructor::wrapperTypeIn fo, wrapper, isolate, WrapperConfiguration::Dependent);
119 v8SetReturnValue(info, wrapper); 120 v8SetReturnValue(info, wrapper);
120 return; 121 return;
121 } 122 }
122 TOSTRING_VOID_INTERNAL(optionalStringArg, info[5]); 123 TOSTRING_VOID_INTERNAL(optionalStringArg, info[5]);
123 } 124 }
124 RefPtr<TestInterfaceNamedConstructor> impl = TestInterfaceNamedConstructor:: createForJSConstructor(document, stringArg, defaultUndefinedOptionalBooleanArg, defaultUndefinedOptionalLongArg, defaultUndefinedOptionalStringArg, defaultNullS tringOptionalstringArg, optionalStringArg, exceptionState); 125 RefPtr<TestInterfaceNamedConstructor> impl = TestInterfaceNamedConstructor:: createForJSConstructor(executionContext, stringArg, defaultUndefinedOptionalBool eanArg, defaultUndefinedOptionalLongArg, defaultUndefinedOptionalStringArg, defa ultNullStringOptionalstringArg, optionalStringArg, exceptionState);
125 if (exceptionState.throwIfNeeded()) 126 if (exceptionState.throwIfNeeded())
126 return; 127 return;
127 128
128 v8::Handle<v8::Object> wrapper = info.Holder(); 129 v8::Handle<v8::Object> wrapper = info.Holder();
129 V8DOMWrapper::associateObjectWithWrapper<V8TestInterfaceNamedConstructor>(im pl.release(), &V8TestInterfaceNamedConstructorConstructor::wrapperTypeInfo, wrap per, isolate, WrapperConfiguration::Dependent); 130 V8DOMWrapper::associateObjectWithWrapper<V8TestInterfaceNamedConstructor>(im pl.release(), &V8TestInterfaceNamedConstructorConstructor::wrapperTypeInfo, wrap per, isolate, WrapperConfiguration::Dependent);
130 v8SetReturnValue(info, wrapper); 131 v8SetReturnValue(info, wrapper);
131 } 132 }
132 133
133 v8::Handle<v8::FunctionTemplate> V8TestInterfaceNamedConstructorConstructor::dom Template(v8::Isolate* isolate) 134 v8::Handle<v8::FunctionTemplate> V8TestInterfaceNamedConstructorConstructor::dom Template(v8::Isolate* isolate)
134 { 135 {
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 fromInternalPointer(object)->deref(); 223 fromInternalPointer(object)->deref();
223 } 224 }
224 225
225 template<> 226 template<>
226 v8::Handle<v8::Value> toV8NoInline(TestInterfaceNamedConstructor* impl, v8::Hand le<v8::Object> creationContext, v8::Isolate* isolate) 227 v8::Handle<v8::Value> toV8NoInline(TestInterfaceNamedConstructor* impl, v8::Hand le<v8::Object> creationContext, v8::Isolate* isolate)
227 { 228 {
228 return toV8(impl, creationContext, isolate); 229 return toV8(impl, creationContext, isolate);
229 } 230 }
230 231
231 } // namespace WebCore 232 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698