Searched refs:npobject (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/content/renderer/pepper/
H A Dhost_var_tracker_unittest.cc28 void TrackedClassDeallocate(NPObject* npobject) { argument
30 delete npobject;
72 NPObjectReleaser npobject(NewTrackedNPObject());
73 NPObjectToPPVarForTest(instance2.get(), npobject.get());
86 NPObjectReleaser npobject(NewTrackedNPObject());
88 PP_Var pp_object1 = NPObjectToPPVarForTest(instance(), npobject.get());
89 PP_Var pp_object2 = NPObjectToPPVarForTest(instance(), npobject.get());
101 EXPECT_EQ(npobject.get(), check_object->np_object());
111 PP_Var pp_object3 = NPObjectToPPVarForTest(instance(), npobject.get());
/external/chromium_org/content/test/plugin/
H A Dplugin_npobject_identity_test.cc20 static void Deallocate(NPObject* npobject) { argument
21 delete static_cast<NPThingy*>(npobject);
H A Dplugin_delete_plugin_in_deallocate_test.cc23 static void Deallocate(NPObject* npobject) { argument
25 reinterpret_cast<DeletePluginInDeallocateTestNPObject*>(npobject);
/external/chromium_org/content/renderer/npapi/
H A Dplugin_channel_host.cc96 NPObjectBase* npobject) {
97 NPChannelBase::AddRoute(route_id, listener, npobject);
99 if (!npobject)
94 AddRoute(int route_id, IPC::Listener* listener, NPObjectBase* npobject) argument
H A Dplugin_channel_host.h35 NPObjectBase* npobject);
H A Dwebplugin_delegate_proxy.cc964 NPObject* npobject = NULL; local
966 npobject = plugin_->GetWindowScriptNPObject();
968 if (!npobject)
973 new NPObjectStub(npobject, channel_host_.get(), route_id, 0, page_url_);
985 NPObject* npobject = NULL; local
987 npobject = plugin_->GetPluginElement();
988 if (!npobject)
994 npobject, channel_host_.get(), route_id, 0, page_url_);
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DV8NPUtils.cpp73 NPObject* npobject = npCreateV8ScriptObject(0, v8::Handle<v8::Object>::Cast(object), window, isolate); local
74 if (npobject)
75 _NPN_RegisterObject(npobject, owner);
76 OBJECT_TO_NPVARIANT(npobject, *result);
/external/chromium_org/content/child/npapi/
H A Dnp_channel_base.cc250 NPObjectBase* npobject) {
251 if (npobject) {
252 npobject_listeners_[route_id] = npobject;
371 int NPChannelBase::GetExistingRouteForNPObjectStub(NPObject* npobject) { argument
372 StubMap::iterator iter = stub_map_.find(npobject);
248 AddRoute(int route_id, IPC::Listener* listener, NPObjectBase* npobject) argument
H A Dnp_channel_base.h64 // npobject). These are also called by NPObjectProxy and NPObjectStub (which
65 // pass themselves for npobject). However the latter don't control the
68 void AddRoute(int route_id, IPC::Listener* listener, NPObjectBase* npobject);
82 int GetExistingRouteForNPObjectStub(NPObject* npobject);
H A Dnpobject_stub.h35 NPObjectStub(NPObject* npobject,
H A Dnpobject_stub.cc26 NPObject* npobject,
31 : npobject_(npobject),
36 channel_->AddMappingForNPObjectStub(route_id, npobject);
55 NPObject* npobject = npobject_; local
58 WebBindings::releaseObject(npobject);
25 NPObjectStub( NPObject* npobject, NPChannelBase* channel, int route_id, int render_view_id, const GURL& page_url) argument

Completed in 1141 milliseconds