| Index: Source/bindings/tests/results/V8TestInterfaceCustomConstructor.cpp
|
| diff --git a/Source/bindings/tests/results/V8TestInterfaceCustomConstructor.cpp b/Source/bindings/tests/results/V8TestInterfaceCustomConstructor.cpp
|
| index 5decd76420336a829ff2f49f7f7b9255ed1bfc3b..27dfd8f94ab9ff55631261d91f63209833452fe3 100644
|
| --- a/Source/bindings/tests/results/V8TestInterfaceCustomConstructor.cpp
|
| +++ b/Source/bindings/tests/results/V8TestInterfaceCustomConstructor.cpp
|
| @@ -90,7 +90,7 @@ void V8TestInterfaceCustomConstructor::constructorCallback(const v8::FunctionCal
|
| V8TestInterfaceCustomConstructor::constructorCustom(info);
|
| }
|
|
|
| -static void configureV8TestInterfaceCustomConstructorTemplate(v8::Handle<v8::FunctionTemplate> functionTemplate, v8::Isolate* isolate, WrapperWorldType currentWorldType)
|
| +static void configureV8TestInterfaceCustomConstructorTemplate(v8::Handle<v8::FunctionTemplate> functionTemplate, v8::Isolate* isolate)
|
| {
|
| functionTemplate->ReadOnlyPrototype();
|
|
|
| @@ -99,7 +99,7 @@ static void configureV8TestInterfaceCustomConstructorTemplate(v8::Handle<v8::Fun
|
| 0, 0,
|
| 0, 0,
|
| 0, 0,
|
| - isolate, currentWorldType);
|
| + isolate);
|
| functionTemplate->SetCallHandler(V8TestInterfaceCustomConstructor::constructorCallback);
|
| functionTemplate->SetLength(0);
|
| v8::Local<v8::ObjectTemplate> ALLOW_UNUSED instanceTemplate = functionTemplate->InstanceTemplate();
|
| @@ -109,17 +109,17 @@ static void configureV8TestInterfaceCustomConstructorTemplate(v8::Handle<v8::Fun
|
| functionTemplate->Set(v8AtomicString(isolate, "toString"), V8PerIsolateData::current()->toStringTemplate());
|
| }
|
|
|
| -v8::Handle<v8::FunctionTemplate> V8TestInterfaceCustomConstructor::domTemplate(v8::Isolate* isolate, WrapperWorldType currentWorldType)
|
| +v8::Handle<v8::FunctionTemplate> V8TestInterfaceCustomConstructor::domTemplate(v8::Isolate* isolate)
|
| {
|
| V8PerIsolateData* data = V8PerIsolateData::from(isolate);
|
| - V8PerIsolateData::TemplateMap::iterator result = data->templateMap(currentWorldType).find(&wrapperTypeInfo);
|
| - if (result != data->templateMap(currentWorldType).end())
|
| + V8PerIsolateData::TemplateMap::iterator result = data->templateMap().find(&wrapperTypeInfo);
|
| + if (result != data->templateMap().end())
|
| return result->value.newLocal(isolate);
|
|
|
| TRACE_EVENT_SCOPED_SAMPLING_STATE("Blink", "BuildDOMTemplate");
|
| v8::Local<v8::FunctionTemplate> templ = v8::FunctionTemplate::New(isolate, V8ObjectConstructor::isValidConstructorMode);
|
| - configureV8TestInterfaceCustomConstructorTemplate(templ, isolate, currentWorldType);
|
| - data->templateMap(currentWorldType).add(&wrapperTypeInfo, UnsafePersistent<v8::FunctionTemplate>(isolate, templ));
|
| + configureV8TestInterfaceCustomConstructorTemplate(templ, isolate);
|
| + data->templateMap().add(&wrapperTypeInfo, UnsafePersistent<v8::FunctionTemplate>(isolate, templ));
|
| return templ;
|
| }
|
|
|
|
|