Home
last modified time | relevance | path

Searched refs:shadowTemplate (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DV8DOMWrapper.cpp48 v8::Handle<v8::FunctionTemplate> shadowTemplate = data->existingDOMTemplate(&shadowTemplateKey); in wrapInShadowTemplate() local
49 if (shadowTemplate.IsEmpty()) { in wrapInShadowTemplate()
50 shadowTemplate = v8::FunctionTemplate::New(isolate); in wrapInShadowTemplate()
51 if (shadowTemplate.IsEmpty()) in wrapInShadowTemplate()
53 shadowTemplate->SetClassName(v8AtomicString(isolate, "HTMLDocument")); in wrapInShadowTemplate()
54 shadowTemplate->Inherit(V8HTMLDocument::domTemplate(isolate)); in wrapInShadowTemplate()
55shadowTemplate->InstanceTemplate()->SetInternalFieldCount(V8HTMLDocument::internalFieldCount); in wrapInShadowTemplate()
56 data->setDOMTemplate(&shadowTemplateKey, shadowTemplate); in wrapInShadowTemplate()
59 v8::Local<v8::Function> shadowConstructor = shadowTemplate->GetFunction(); in wrapInShadowTemplate()