HomeSort by relevance Sort by last modified time
    Searched full:m_constructor (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
CustomElementConstructorBuilder.cpp 183 ASSERT(m_constructor.IsEmpty());
193 m_constructor = constructorTemplate->GetFunction();
194 if (m_constructor.IsEmpty()) {
208 m_constructor->SetName(v8Type->IsNull() ? v8TagName : v8Type.As<v8::String>());
210 V8HiddenValue::setHiddenValue(isolate, m_constructor, V8HiddenValue::customElementDocument(isolate), toV8(document, m_scriptState->context()->Global(), isolate));
211 V8HiddenValue::setHiddenValue(isolate, m_constructor, V8HiddenValue::customElementNamespaceURI(isolate), v8String(isolate, descriptor.namespaceURI()));
212 V8HiddenValue::setHiddenValue(isolate, m_constructor, V8HiddenValue::customElementTagName(isolate), v8TagName);
213 V8HiddenValue::setHiddenValue(isolate, m_constructor, V8HiddenValue::customElementType(isolate), v8Type);
216 ASSERT(m_constructor->HasOwnProperty(prototypeKey));
220 m_constructor->Set(prototypeKey, m_prototype)
227 m_prototype->ForceSet(v8String(isolate, "constructor"), m_constructor, v8::DontEnum); local
    [all...]
CustomElementConstructorBuilder.h 88 v8::Handle<v8::Function> m_constructor; member in class:WebCore::CustomElementConstructorBuilder

Completed in 519 milliseconds