HomeSort by relevance Sort by last modified time
    Searched defs:windowObject (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/Source/testing/plugin/Tests/
InvokeDestroysPluginWithinNPP_New.cpp 53 NPObject* windowObject = 0;
54 if (NPN_GetValue(NPNVWindowNPObject, &windowObject) != NPERR_NO_ERROR)
57 if (!windowObject)
61 if (!NPN_Invoke(windowObject, NPN_GetStringIdentifier("removePluginElement"), 0, 0, &result))
NPRuntimeCallsWithNullNPP.cpp 38 NPObject* windowObject = 0;
39 if (NPN_GetValue(NPNVWindowNPObject, &windowObject) != NPERR_NO_ERROR || !windowObject)
43 if (!PluginTest::netscapeFuncs()->hasmethod(0, windowObject, alertIdentifier)) {
44 NPN_ReleaseObject(windowObject);
50 if (!PluginTest::netscapeFuncs()->getproperty(0, windowObject, documentIdentifier, &variant)) {
51 NPN_ReleaseObject(windowObject);
56 NPN_ReleaseObject(windowObject);
  /external/chromium_org/third_party/WebKit/ManualTests/NPN_Invoke/
main.c 160 NPObject *windowObject = NULL;
161 error = browser->getvalue(instance, NPNVWindowNPObject, &windowObject);
166 browser->invoke(instance, windowObject, browser->getstringidentifier("alert"), &alertMessage, 1, &result);
167 browser->releaseobject(windowObject);
  /external/chromium_org/third_party/WebKit/Source/testing/plugin/
main.cpp 423 NPObject* windowObject = 0;
424 NPError error = browser->getvalue(instance, NPNVWindowNPObject, &windowObject);
428 if (browser->getproperty(instance, windowObject, browser->getstringidentifier(obj->onStreamDestroy), &onStreamDestroyVariant)) {
441 browser->releaseobject(windowObject);
PluginObject.cpp 39 static void pluginLogWithWindowObject(NPObject* windowObject, NPP instance, const char* message)
42 if (!browser->getproperty(instance, windowObject, browser->getstringidentifier("console"), &consoleVariant)) {
71 NPObject* windowObject = 0;
72 NPError error = browser->getvalue(instance, NPNVWindowNPObject, &windowObject);
78 pluginLogWithWindowObject(windowObject, instance, message);
79 browser->releaseobject(windowObject);
902 NPObject* windowObject = 0;
903 browser->getvalue(npp, NPNVWindowNPObject, &windowObject);
904 if (!windowObject)
908 browser->getproperty(npp, windowObject, documentId, &docVariant)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebFrameImpl.cpp 738 NPObject* WebFrameImpl::windowObject() const
    [all...]

Completed in 101 milliseconds