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/core/v8/
CustomElementConstructorBuilder.cpp 174 ASSERT(m_constructor.IsEmpty());
184 m_constructor = constructorTemplate->GetFunction();
185 if (m_constructor.IsEmpty()) {
199 m_constructor->SetName(v8Type->IsNull() ? v8TagName : v8Type.As<v8::String>());
201 V8HiddenValue::setHiddenValue(isolate, m_constructor, V8HiddenValue::customElementDocument(isolate), toV8(document, m_scriptState->context()->Global(), isolate));
202 V8HiddenValue::setHiddenValue(isolate, m_constructor, V8HiddenValue::customElementNamespaceURI(isolate), v8String(isolate, descriptor.namespaceURI()));
203 V8HiddenValue::setHiddenValue(isolate, m_constructor, V8HiddenValue::customElementTagName(isolate), v8TagName);
204 V8HiddenValue::setHiddenValue(isolate, m_constructor, V8HiddenValue::customElementType(isolate), v8Type);
207 ASSERT(m_constructor->HasOwnProperty(prototypeKey));
211 m_constructor->Set(prototypeKey, m_prototype)
218 m_prototype->ForceSet(v8String(isolate, "constructor"), m_constructor, v8::DontEnum); local
    [all...]
CustomElementConstructorBuilder.h 87 v8::Handle<v8::Function> m_constructor; member in class:blink::CustomElementConstructorBuilder

Completed in 74 milliseconds