| Index: Source/bindings/tests/results/V8TestInterfaceConstructor3.cpp
|
| diff --git a/Source/bindings/tests/results/V8TestInterfaceConstructor3.cpp b/Source/bindings/tests/results/V8TestInterfaceConstructor3.cpp
|
| index ec083b74259d9d14186ee5e716490d47efda7a98..edcfd18d901f0a9ef85f894c88650b418309a4c9 100644
|
| --- a/Source/bindings/tests/results/V8TestInterfaceConstructor3.cpp
|
| +++ b/Source/bindings/tests/results/V8TestInterfaceConstructor3.cpp
|
| @@ -101,7 +101,7 @@ void V8TestInterfaceConstructor3::constructorCallback(const v8::FunctionCallback
|
| TestInterfaceConstructor3V8Internal::constructor(info);
|
| }
|
|
|
| -static v8::Handle<v8::FunctionTemplate> ConfigureV8TestInterfaceConstructor3Template(v8::Handle<v8::FunctionTemplate> functionTemplate, v8::Isolate* isolate, WrapperWorldType currentWorldType)
|
| +static void configureV8TestInterfaceConstructor3Template(v8::Handle<v8::FunctionTemplate> functionTemplate, v8::Isolate* isolate, WrapperWorldType currentWorldType)
|
| {
|
| functionTemplate->ReadOnlyPrototype();
|
|
|
| @@ -118,7 +118,6 @@ static v8::Handle<v8::FunctionTemplate> ConfigureV8TestInterfaceConstructor3Temp
|
|
|
| // Custom toString template
|
| functionTemplate->Set(v8::String::NewFromUtf8(isolate, "toString", v8::String::kInternalizedString), V8PerIsolateData::current()->toStringTemplate());
|
| - return functionTemplate;
|
| }
|
|
|
| v8::Handle<v8::FunctionTemplate> V8TestInterfaceConstructor3::domTemplate(v8::Isolate* isolate, WrapperWorldType currentWorldType)
|
| @@ -130,8 +129,8 @@ v8::Handle<v8::FunctionTemplate> V8TestInterfaceConstructor3::domTemplate(v8::Is
|
|
|
| TRACE_EVENT_SCOPED_SAMPLING_STATE("Blink", "BuildDOMTemplate");
|
| v8::EscapableHandleScope handleScope(isolate);
|
| - v8::Local<v8::FunctionTemplate> templ =
|
| - ConfigureV8TestInterfaceConstructor3Template(data->rawDOMTemplate(&wrapperTypeInfo, currentWorldType), isolate, currentWorldType);
|
| + v8::Local<v8::FunctionTemplate> templ = v8::FunctionTemplate::New(isolate, V8ObjectConstructor::isValidConstructorMode);
|
| + configureV8TestInterfaceConstructor3Template(templ, isolate, currentWorldType);
|
| data->templateMap(currentWorldType).add(&wrapperTypeInfo, UnsafePersistent<v8::FunctionTemplate>(isolate, templ));
|
| return handleScope.Escape(templ);
|
| }
|
|
|