HomeSort by relevance Sort by last modified time
    Searched refs:NPObject (Results 51 - 75 of 89) sorted by null

1 23 4

  /external/chromium_org/content/test/plugin/
plugin_execute_stream_javascript.cc 49 NPObject *window_obj = NULL;
plugin_private_test.cc 32 NPObject *window_obj = NULL;
plugin_npobject_lifetime_test.cc 12 NPObject* NPObjectLifetimeTestInstance2::plugin_instance_object_ = NULL;
32 // We attempt to retreive the NPObject for the plugin instance identified
101 SetError("Failed to get NPObject for plugin instance2");
149 NPObject *window_obj = NULL;
156 "Failed to get NPObject for plugin instance2");
plugin_windowed_test.cc 83 NPObject *window_obj = NULL;
87 SetError("Failed to get NPObject for plugin instance");
114 NPObject *window_obj = NULL;
plugin_thread_async_call_test.cc 92 NPObject *window_obj = NULL;
plugin_get_javascript_url_test.cc 52 // We attempt to retreive the NPObject for the plugin instance identified
75 NPObject *window_obj = NULL;
80 this_instance->SetError("Failed to get NPObject for plugin instance2");
plugin_test.cc 74 NPObject *window_obj = NULL;
  /external/chromium_org/third_party/WebKit/Source/web/tests/
FakeWebPlugin.h 52 virtual NPObject* scriptableObject() OVERRIDE { return 0; }
  /external/chromium_org/third_party/WebKit/public/web/
WebFrame.h 46 struct NPObject;
253 // Returns a NPObject corresponding to this frame's DOMWindow.
254 virtual NPObject* windowObject() const = 0;
256 // Binds a NPObject as a property of this frame's DOMWindow.
257 virtual void bindToWindowObject(const WebString& name, NPObject*) = 0;
259 const WebString& name, NPObject*, void*) = 0;
  /external/chromium_org/content/child/npapi/
np_channel_base.cc 250 NPObjectBase* npobject) {
251 if (npobject) {
252 npobject_listeners_[route_id] = npobject;
265 // This was an NPObject proxy or stub, it's not involved in the refcounting.
267 // If this RemoveRoute call from the NPObject is a result of us calling
328 NPObject* object) {
337 NPObject* object) {
343 NPObject* object) {
366 NPObject* NPChannelBase::GetExistingNPObjectProxy(int route_id) {
371 int NPChannelBase::GetExistingRouteForNPObjectStub(NPObject* npobject)
    [all...]
npobject_stub.cc 26 NPObject* npobject,
31 : npobject_(npobject),
36 channel_->AddMappingForNPObjectStub(route_id, npobject);
55 NPObject* npobject = npobject_; local
58 WebBindings::releaseObject(npobject);
68 NPObject* NPObjectStub::GetUnderlyingNPObject() {
121 // If we're in the plugin process, then the stub is holding onto an NPObject
plugin_instance.h 153 NPObject* GetPluginScriptableObject();
webplugin_delegate_impl.cc 184 NPObject* WebPluginDelegateImpl::GetPluginScriptableObject() {
  /external/chromium_org/third_party/npapi/npspy/extern/plugin/
npupp.h 376 typedef NPObject* (* NP_LOADDS NPN_CreateObjectUPP)(NPP npp, NPClass *aClass);
383 typedef NPObject* (* NP_LOADDS NPN_RetainObjectUPP)(NPObject *obj);
390 typedef void (* NP_LOADDS NPN_ReleaseObjectUPP)(NPObject *obj);
397 typedef bool (* NP_LOADDS NPN_InvokeUPP)(NPP npp, NPObject* obj, NPIdentifier methodName, const NPVariant *args, uint32_t argCount, NPVariant *result);
404 typedef bool (* NP_LOADDS NPN_InvokeDefaultUPP)(NPP npp, NPObject* obj, const NPVariant *args, uint32_t argCount, NPVariant *result);
411 typedef bool (* NP_LOADDS NPN_EvaluateUPP)(NPP npp, NPObject *obj, NPString *script, NPVariant *result);
418 typedef bool (* NP_LOADDS NPN_GetPropertyUPP)(NPP npp, NPObject *obj, NPIdentifier propertyName, NPVariant *result);
425 typedef bool (* NP_LOADDS NPN_SetPropertyUPP)(NPP npp, NPObject *obj, NPIdentifier propertyName, const NPVariant *value);
432 typedef bool (* NP_LOADDS NPN_RemovePropertyUPP)(NPP npp, NPObject *obj, NPIdentifier propertyName)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebPluginContainerImpl.h 45 struct NPObject;
112 virtual NPObject* scriptableObjectForElement() OVERRIDE;
WebLocalFrameImpl.h 106 virtual NPObject* windowObject() const OVERRIDE;
107 virtual void bindToWindowObject(const WebString& name, NPObject*) OVERRIDE;
108 virtual void bindToWindowObject(const WebString& name, NPObject*, void*) OVERRIDE;
WebRemoteFrameImpl.h 58 virtual NPObject* windowObject() const OVERRIDE;
59 virtual void bindToWindowObject(const WebString& name, NPObject*) OVERRIDE;
60 virtual void bindToWindowObject(const WebString& name, NPObject*, void*) OVERRIDE;
WebRemoteFrameImpl.cpp 321 NPObject* WebRemoteFrameImpl::windowObject() const
327 void WebRemoteFrameImpl::bindToWindowObject(const WebString& name, NPObject*)
332 void WebRemoteFrameImpl::bindToWindowObject(const WebString& name, NPObject*, void*)
  /external/chromium_org/content/renderer/npapi/
webplugin_delegate_proxy.h 30 struct NPObject;
67 virtual NPObject* GetPluginScriptableObject() OVERRIDE;
277 NPObject* npobject_;
webplugin_impl.h 72 virtual NPObject* scriptableObject();
103 virtual NPObject* GetWindowScriptNPObject() OVERRIDE;
104 virtual NPObject* GetPluginElement() OVERRIDE;
  /external/chromium_org/components/plugins/renderer/
webview_plugin.h 75 virtual NPObject* scriptableObject();
webview_plugin.cc 126 NPObject* WebViewPlugin::scriptableObject() { return NULL; }
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptController.cpp 120 // only leak the NPObject wrapper, not the object, its document, or
263 void ScriptController::bindToWindowObject(LocalFrame* frame, const String& key, NPObject* object)
328 // NPObject as part of its wrapper. However, before accessing the object
366 static NPObject* createNoScriptObject()
372 static NPObject* createScriptObject(LocalFrame* frame, v8::Isolate* isolate)
385 NPObject* ScriptController::windowScriptNPObject()
392 // Return an NPObject bound to the window object.
396 // JavaScript is not enabled, so we cannot bind the NPObject to the
397 // JavaScript window object. Instead, we create an NPObject of a
404 NPObject* ScriptController::createScriptObjectForPluginElement(HTMLPlugInElement* plugin
    [all...]
  /external/chromium_org/content/shell/renderer/test_runner/
test_plugin.h 58 virtual NPObject* scriptableObject();
  /external/chromium_org/content/plugin/
webplugin_proxy.cc 174 NPObject* WebPluginProxy::GetWindowScriptNPObject() {
198 NPObject* WebPluginProxy::GetPluginElement() {

Completed in 802 milliseconds

1 23 4