Searched refs:npObjectDesc (Results 1 - 1 of 1) sorted by relevance

/external/webkit/WebCore/bindings/v8/
H A DV8NPObject.cpp346 static v8::Persistent<v8::FunctionTemplate> npObjectDesc; local
363 if (npObjectDesc.IsEmpty()) {
364 npObjectDesc = v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New());
365 npObjectDesc->InstanceTemplate()->SetInternalFieldCount(npObjectInternalFieldCount);
366 npObjectDesc->InstanceTemplate()->SetNamedPropertyHandler(npObjectNamedPropertyGetter, npObjectNamedPropertySetter, 0, 0, npObjectNamedPropertyEnumerator);
367 npObjectDesc->InstanceTemplate()->SetIndexedPropertyHandler(npObjectIndexedPropertyGetter, npObjectIndexedPropertySetter, 0, 0, npObjectIndexedPropertyEnumerator);
368 npObjectDesc->InstanceTemplate()->SetCallAsFunctionHandler(npObjectInvokeDefaultHandler);
371 v8::Handle<v8::Function> v8Function = npObjectDesc->GetFunction();

Completed in 32 milliseconds