Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceConstructor.cpp |
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceConstructor.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceConstructor.cpp |
index 0a46fdaba5a704908650023e44b801beb369c7ce..ddefa4714c0c42b18e53be9c738249730de7af99 100644 |
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceConstructor.cpp |
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceConstructor.cpp |
@@ -17,6 +17,7 @@ |
#include "bindings/core/v8/LongOrTestDictionary.h" |
#include "bindings/core/v8/V8DOMConfiguration.h" |
#include "bindings/core/v8/V8ObjectConstructor.h" |
+#include "bindings/core/v8/V8PrivateProperty.h" |
#include "bindings/core/v8/V8TestDictionary.h" |
#include "bindings/core/v8/V8TestInterfaceEmpty.h" |
#include "core/dom/Document.h" |
@@ -359,12 +360,39 @@ v8::Local<v8::FunctionTemplate> V8TestInterfaceConstructorConstructor::domTempla |
result = v8::FunctionTemplate::New(isolate, V8TestInterfaceConstructorConstructorCallback); |
v8::Local<v8::ObjectTemplate> instanceTemplate = result->InstanceTemplate(); |
instanceTemplate->SetInternalFieldCount(V8TestInterfaceConstructor::internalFieldCount); |
- result->SetClassName(v8AtomicString(isolate, "TestInterfaceConstructor")); |
+ result->SetClassName(v8AtomicString(isolate, "Audio")); |
result->Inherit(V8TestInterfaceConstructor::domTemplate(isolate, world)); |
data->setInterfaceTemplate(world, &domTemplateKey, result); |
return result; |
} |
+void V8TestInterfaceConstructorConstructor::NamedConstructorAttributeGetter( |
+ v8::Local<v8::Name> propertyName, |
+ const v8::PropertyCallbackInfo<v8::Value>& info) { |
+ v8::Local<v8::Context> creationContext = info.Holder()->CreationContext(); |
+ V8PerContextData* perContextData = V8PerContextData::from(creationContext); |
+ if (!perContextData) { |
+ // TODO(yukishiino): Return a valid named constructor even after the context is detached |
+ return; |
+ } |
+ |
+ v8::Local<v8::Function> namedConstructor = perContextData->constructorForType(&V8TestInterfaceConstructorConstructor::wrapperTypeInfo); |
+ |
+ // Set the prototype of named constructors to the regular constructor. |
+ auto privateProperty = V8PrivateProperty::getNamedConstructorInitialized(info.GetIsolate()); |
+ v8::Local<v8::Value> privateValue = privateProperty.get(creationContext, namedConstructor); |
+ if (privateValue.IsEmpty()) { |
+ v8::Local<v8::Function> interface = perContextData->constructorForType(&V8TestInterfaceConstructor::wrapperTypeInfo); |
+ v8::Local<v8::Value> interfacePrototype = interface->Get(creationContext, v8AtomicString(info.GetIsolate(), "prototype")).ToLocalChecked(); |
+ bool result = namedConstructor->Set(creationContext, v8AtomicString(info.GetIsolate(), "prototype"), interfacePrototype).ToChecked(); |
+ if (!result) |
+ return; |
+ privateProperty.set(creationContext, namedConstructor, v8::True(info.GetIsolate())); |
+ } |
+ |
+ v8SetReturnValue(info, namedConstructor); |
+} |
+ |
void V8TestInterfaceConstructor::constructorCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { |
UseCounter::count(currentExecutionContext(info.GetIsolate()), UseCounter::TestFeature); |
if (!info.IsConstructCall()) { |