/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
CustomElementConstructorBuilder.cpp | 75 ASSERT(m_prototype.IsEmpty()); 83 m_prototype = prototypeScriptValue.v8Value().As<v8::Object>(); 85 m_prototype = v8::Object::New(); 88 m_prototype->SetPrototype(basePrototype); 139 ASSERT(!m_prototype.IsEmpty()); 152 m_callbacks = V8CustomElementLifecycleCallbacks::create(executionContext.get(), m_prototype, created, attached, detached, attributeChanged); 158 v8::Handle<v8::Value> value = m_prototype->Get(v8String(isolate, name)); 166 ASSERT(!m_prototype.IsEmpty()); 204 m_constructor->Set(prototypeKey, m_prototype); 208 m_constructor->ForceSet(prototypeKey, m_prototype, v8::PropertyAttribute(v8::ReadOnly | v8::DontEnum | v8::DontDelete)) [all...] |
CustomElementBinding.h | 46 ~CustomElementBinding() { m_prototype.dispose(); } 48 v8::Handle<v8::Object> prototype() { return m_prototype.newLocal(m_isolate); } 55 UnsafePersistent<v8::Object> m_prototype; member in class:WebCore::CustomElementBinding
|
CustomElementBinding.cpp | 43 , m_prototype(isolate, prototype) 46 ASSERT(m_prototype.value());
|
V8CustomElementLifecycleCallbacks.cpp | 96 , m_prototype(toIsolate(executionContext), prototype) 102 m_prototype.setWeak(&m_prototype, weakCallback<v8::Object>); 170 v8::Handle<v8::Object> prototype = m_prototype.newLocal(isolate);
|
CustomElementConstructorBuilder.h | 87 v8::Handle<v8::Object> m_prototype; member in class:WebCore::CustomElementConstructorBuilder
|
V8CustomElementLifecycleCallbacks.h | 71 ScopedPersistent<v8::Object> m_prototype; member in class:WebCore::V8CustomElementLifecycleCallbacks
|