/external/chromium_org/third_party/WebKit/Source/testing/plugin/Tests/ |
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);
|
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))
|
/external/chromium_org/third_party/WebKit/Source/testing/plugin/ |
PluginObject.cpp | 38 static void pluginLogWithWindowObject(NPObject* windowObject, NPP instance, const char* message) 41 if (!browser->getproperty(instance, windowObject, browser->getstringidentifier("console"), &consoleVariant)) { 70 NPObject* windowObject = 0; 71 NPError error = browser->getvalue(instance, NPNVWindowNPObject, &windowObject); 77 pluginLogWithWindowObject(windowObject, instance, message); 78 browser->releaseobject(windowObject); 901 NPObject* windowObject = 0; 902 browser->getvalue(npp, NPNVWindowNPObject, &windowObject); 903 if (!windowObject) 907 browser->getproperty(npp, windowObject, documentId, &docVariant) [all...] |
main.cpp | 426 NPObject* windowObject = 0; 427 NPError error = browser->getvalue(instance, NPNVWindowNPObject, &windowObject); 431 if (browser->getproperty(instance, windowObject, browser->getstringidentifier(obj->onStreamDestroy), &onStreamDestroyVariant)) { 444 browser->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/chrome/renderer/ |
external_host_bindings.cc | 156 NPObject* window = frame_->windowObject(); 158 NOTREACHED() << "frame_->windowObject";
|
/external/chromium_org/third_party/WebKit/public/web/ |
WebFrame.h | 249 virtual NPObject* windowObject() const = 0;
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebFrameImpl.h | 111 virtual NPObject* windowObject() const;
|
WebFrameImpl.cpp | 743 NPObject* WebFrameImpl::windowObject() const [all...] |
/external/chromium_org/content/renderer/pepper/ |
pepper_plugin_instance_impl.cc | [all...] |
/external/chromium_org/content/renderer/browser_plugin/ |
browser_plugin.cc | 685 return guest_frame->windowObject(); [all...] |
/external/chromium_org/content/renderer/npapi/ |
webplugin_impl.cc | 738 return webframe_->windowObject(); [all...] |