Searched refs:npArgs (Results 1 – 1 of 1) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
D | V8NPObject.cpp | 109 OwnPtr<NPVariant[]> npArgs = adoptArrayPtr(new NPVariant[numArgs]); in npObjectInvokeImpl() local 112 convertV8ObjectToNPVariant(info[i], npObject, &npArgs[i], isolate); in npObjectInvokeImpl() 123 retval = npObject->_class->invoke(npObject, identifier, npArgs.get(), numArgs, &result); in npObjectInvokeImpl() 128 retval = npObject->_class->construct(npObject, npArgs.get(), numArgs, &result); in npObjectInvokeImpl() 132 retval = npObject->_class->invokeDefault(npObject, npArgs.get(), numArgs, &result); in npObjectInvokeImpl() 142 _NPN_ReleaseVariantValue(&npArgs[i]); in npObjectInvokeImpl()
|