Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DCustomElementConstructorBuilder.cpp75 ASSERT(m_prototype.IsEmpty()); in validateOptions()
83 m_prototype = prototypeScriptValue.v8Value().As<v8::Object>(); in validateOptions()
85 m_prototype = v8::Object::New(); in validateOptions()
88 m_prototype->SetPrototype(basePrototype); in validateOptions()
139 ASSERT(!m_prototype.IsEmpty()); in createCallbacks()
152 …m_callbacks = V8CustomElementLifecycleCallbacks::create(executionContext.get(), m_prototype, creat… in createCallbacks()
158 v8::Handle<v8::Value> value = m_prototype->Get(v8String(isolate, name)); in retrieveCallback()
166 ASSERT(!m_prototype.IsEmpty()); in createConstructor()
204 m_constructor->Set(prototypeKey, m_prototype); in createConstructor()
208 …m_constructor->ForceSet(prototypeKey, m_prototype, v8::PropertyAttribute(v8::ReadOnly | v8::DontEn… in createConstructor()
[all …]
DCustomElementBinding.h46 ~CustomElementBinding() { m_prototype.dispose(); } in ~CustomElementBinding()
48 v8::Handle<v8::Object> prototype() { return m_prototype.newLocal(m_isolate); } in prototype()
55 UnsafePersistent<v8::Object> m_prototype; variable
DCustomElementBinding.cpp43 , m_prototype(isolate, prototype) in CustomElementBinding()
46 ASSERT(m_prototype.value()); in CustomElementBinding()
DV8CustomElementLifecycleCallbacks.cpp96 , m_prototype(toIsolate(executionContext), prototype) in V8CustomElementLifecycleCallbacks()
102 m_prototype.setWeak(&m_prototype, weakCallback<v8::Object>); in V8CustomElementLifecycleCallbacks()
170 v8::Handle<v8::Object> prototype = m_prototype.newLocal(isolate); in created()
DCustomElementConstructorBuilder.h87 v8::Handle<v8::Object> m_prototype; variable
DV8CustomElementLifecycleCallbacks.h71 ScopedPersistent<v8::Object> m_prototype; variable