Home
last modified time | relevance | path

Searched refs:windowObject (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/content/shell/tools/plugin/Tests/
DNPRuntimeCallsWithNullNPP.cpp46 NPObject* windowObject = 0; in NPP_New() local
47 if (NPN_GetValue(NPNVWindowNPObject, &windowObject) != NPERR_NO_ERROR || !windowObject) in NPP_New()
51 if (!PluginTest::netscapeFuncs()->hasmethod(0, windowObject, alertIdentifier)) { in NPP_New()
52 NPN_ReleaseObject(windowObject); in NPP_New()
58 … if (!PluginTest::netscapeFuncs()->getproperty(0, windowObject, documentIdentifier, &variant)) { in NPP_New()
59 NPN_ReleaseObject(windowObject); in NPP_New()
64 NPN_ReleaseObject(windowObject); in NPP_New()
DInvokeDestroysPluginWithinNPP_New.cpp57 NPObject* windowObject = 0; in NPP_New() local
58 if (NPN_GetValue(NPNVWindowNPObject, &windowObject) != NPERR_NO_ERROR) in NPP_New()
61 if (!windowObject) in NPP_New()
65 if (!NPN_Invoke(windowObject, NPN_GetStringIdentifier("removePluginElement"), 0, 0, &result)) in NPP_New()
/external/chromium_org/content/shell/tools/plugin/
DPluginObject.cpp44 static void pluginLogWithWindowObject(NPObject* windowObject, in pluginLogWithWindowObject() argument
49 windowObject, in pluginLogWithWindowObject()
90 NPObject* windowObject = 0; in pluginLogWithArguments() local
92 browser->getvalue(instance, NPNVWindowNPObject, &windowObject); in pluginLogWithArguments()
100 pluginLogWithWindowObject(windowObject, instance, message); in pluginLogWithArguments()
101 browser->releaseobject(windowObject); in pluginLogWithArguments()
1029 NPObject* windowObject = 0; in testDocumentOpen() local
1030 browser->getvalue(npp, NPNVWindowNPObject, &windowObject); in testDocumentOpen()
1031 if (!windowObject) in testDocumentOpen()
1035 browser->getproperty(npp, windowObject, documentId, &docVariant); in testDocumentOpen()
[all …]
Dmain.cpp434 NPObject* windowObject = 0; in NPP_DestroyStream() local
435 NPError error = browser->getvalue(instance, NPNVWindowNPObject, &windowObject); in NPP_DestroyStream()
439 …if (browser->getproperty(instance, windowObject, browser->getstringidentifier(obj->onStreamDestroy… in NPP_DestroyStream()
452 browser->releaseobject(windowObject); in NPP_DestroyStream()
/external/chromium_org/third_party/WebKit/ManualTests/NPN_Invoke/
Dmain.c160 NPObject *windowObject = NULL; in NPP_New() local
161 error = browser->getvalue(instance, NPNVWindowNPObject, &windowObject); in NPP_New()
166 …browser->invoke(instance, windowObject, browser->getstringidentifier("alert"), &alertMessage, 1, &… in NPP_New()
167 browser->releaseobject(windowObject); in NPP_New()
/external/chromium_org/third_party/WebKit/public/web/
DWebFrame.h254 virtual NPObject* windowObject() const = 0;
/external/chromium_org/third_party/WebKit/Source/web/
DWebRemoteFrameImpl.h58 virtual NPObject* windowObject() const OVERRIDE;
DWebLocalFrameImpl.h106 virtual NPObject* windowObject() const OVERRIDE;
DWebRemoteFrameImpl.cpp321 NPObject* WebRemoteFrameImpl::windowObject() const in windowObject() function in blink::WebRemoteFrameImpl
DWebLocalFrameImpl.cpp682 NPObject* WebLocalFrameImpl::windowObject() const in windowObject() function in blink::WebLocalFrameImpl
/external/chromium_org/content/renderer/npapi/
Dwebplugin_impl.cc756 return webframe_->windowObject(); in GetWindowScriptNPObject()