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

  /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 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...]
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);
  /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 216 virtual NPObject* windowObject() const = 0;
  /external/chromium_org/third_party/WebKit/Source/web/
WebFrameImpl.h 108 virtual NPObject* windowObject() const;
WebFrameImpl.cpp 738 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 650 return guest_frame->windowObject();
    [all...]
  /external/chromium_org/content/renderer/npapi/
webplugin_impl.cc 749 return webframe_->windowObject();
    [all...]

Completed in 764 milliseconds