HomeSort by relevance Sort by last modified time
    Searched refs:npClass (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/content/shell/tools/plugin/
PluginTest.h 121 NPObject* NPN_CreateObject(NPClass*);
178 static_cast<Object*>(pluginTest->NPN_CreateObject(npClass()));
231 static NPObject* NP_Allocate(NPP npp, NPClass* aClass) { return new T; }
273 static NPClass* npClass() {
274 static NPClass npClass = {
276 0, // NPClass::invalidate
282 0, // NPClass::setProperty
284 0, // NPClass::enumerat
    [all...]
PluginTest.cpp 190 NPObject* PluginTest::NPN_CreateObject(NPClass* npClass) {
191 return browser->createobject(m_npp, npClass);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
npruntime.cpp 266 NPObject *_NPN_CreateObject(NPP npp, NPClass* npClass)
268 ASSERT(npClass);
270 if (npClass) {
272 if (npClass->allocate != 0)
273 npObject = npClass->allocate(npp, npClass);
277 npObject->_class = npClass;
  /external/chromium_org/third_party/WebKit/Source/web/
WebBindings.cpp 63 NPObject* WebBindings::createObject(NPP npp, NPClass* npClass)
65 return _NPN_CreateObject(npp, npClass);

Completed in 877 milliseconds