HomeSort by relevance Sort by last modified time
    Searched refs:PluginModule (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/content/renderer/pepper/
pepper_plugin_registry.h 15 class PluginModule;
38 PluginModule* GetLiveModule(const base::FilePath& path);
44 void AddLiveModule(const base::FilePath& path, PluginModule* module);
46 void PluginModuleDead(PluginModule* dead_module);
57 typedef std::map<base::FilePath, scoped_refptr<PluginModule> >
67 typedef std::map<base::FilePath, PluginModule*> NonOwningModuleMap;
plugin_module.cc 172 typedef std::set<PluginModule*> PluginModuleSet;
386 PluginModule* module,
403 // PluginModule ----------------------------------------------------------------
405 PluginModule::PluginModule(const std::string& name,
426 PluginModule::~PluginModule() {
464 void PluginModule::SetRendererPpapiHost(
469 bool PluginModule::InitAsInternalPlugin(
478 bool PluginModule::InitAsLibrary(const base::FilePath& path)
    [all...]
plugin_module.h 61 class CONTENT_EXPORT PluginModule :
62 public base::RefCounted<PluginModule>,
63 public base::SupportsWeakPtr<PluginModule> {
73 PluginModule(const std::string& name,
98 scoped_refptr<PluginModule> CreateModuleForExternalPluginInstance();
189 // Create a new HostDispatcher for proxying, hook it to the PluginModule,
202 // existing HostGlobals. A new one will be constructed when a PluginModule is
215 static scoped_refptr<PluginModule> Create(RenderFrameImpl* render_frame,
220 friend class base::RefCounted<PluginModule>;
221 ~PluginModule();
    [all...]
ppb_proxy_impl.cc 22 PluginModule* plugin_module = HostGlobals::Get()->GetModule(module);
37 PluginModule* plugin_module = HostGlobals::Get()->GetModule(module);
43 PluginModule* plugin_module = HostGlobals::Get()->GetModule(module);
49 PluginModule* plugin_module = HostGlobals::Get()->GetModule(module);
55 PluginModule* plugin_module = HostGlobals::Get()->GetModule(module);
host_dispatcher_wrapper.h 20 class PluginModule;
27 HostDispatcherWrapper(PluginModule* module,
58 PluginModule* module_;
pepper_plugin_registry.cc 46 PluginModule* PepperPluginRegistry::GetLiveModule(const base::FilePath& path) {
52 // We don't want to return a PluginModule in that case, since the plugin may
54 const PluginModule::PluginInstanceSet& instance_set =
58 // it's safe to return the PluginModule.
62 PluginModule::PluginInstanceSet::const_iterator instance_iter =
73 PluginModule* module) {
78 void PepperPluginRegistry::PluginModuleDead(PluginModule* dead_module) {
118 scoped_refptr<PluginModule> module = new PluginModule(
renderer_ppapi_host_impl.h 34 class PluginModule;
36 // This class is attached to a PluginModule which manages our lifetime.
48 PluginModule* module,
52 PluginModule* module,
105 RendererPpapiHostImpl(PluginModule* module,
108 RendererPpapiHostImpl(PluginModule* module,
119 PluginModule* module_; // Non-owning pointer.
host_globals.h 18 class PluginModule;
64 PP_Module AddModule(PluginModule* module);
72 PluginModule* GetModule(PP_Module module);
104 // Tracks all live modules. The pointers are non-owning, the PluginModule
106 typedef std::map<PP_Module, PluginModule*> ModuleMap;
pepper_broker.h 27 class PluginModule;
48 explicit PepperBroker(PluginModule* plugin_module);
97 PluginModule* plugin_module_;
host_globals.cc 42 void GetAllContainersForModule(PluginModule* module,
44 const PluginModule::PluginInstanceSet& instances =
46 for (PluginModule::PluginInstanceSet::const_iterator i = instances.begin();
163 PluginModule* module = GetModule(pp_module);
188 PP_Module HostGlobals::AddModule(PluginModule* module) {
218 PluginModule* HostGlobals::GetModule(PP_Module module) {
pepper_webplugin_impl.h 28 class PluginModule;
35 PepperWebPluginImpl(PluginModule* module,
mock_renderer_ppapi_host.h 17 class PluginModule;
renderer_ppapi_host_impl.cc 41 PluginModule* module,
57 PluginModule* module,
79 PluginModule* module,
94 PluginModule* module,
pepper_plugin_instance_impl.h 103 class PluginModule;
127 PluginModule* module,
131 PluginModule* module() const { return module_.get(); }
489 PP_ExternalPluginResult ResetAsProxied(scoped_refptr<PluginModule> module);
496 bool IsValidInstanceOf(PluginModule* module);
560 PluginModule* module,
656 scoped_refptr<PluginModule> module_;
661 scoped_refptr<PluginModule> original_module_;
    [all...]
host_array_buffer_var.cc 80 PluginModule* pm = hg->GetModule(hg->GetModuleForInstance(instance));
host_dispatcher_wrapper.cc 19 PluginModule* module,
ppb_broker_impl.cc 67 PluginModule* module = plugin_instance->module();
pepper_webplugin_impl.cc 50 scoped_refptr<PluginModule> module;
59 PluginModule* plugin_module,
ppb_scrollbar_impl.cc 172 PluginModule* plugin_module =
194 PluginModule* plugin_module =
plugin_object.cc 85 scoped_refptr<PluginModule> ref(accessor.object()->instance()->module());
105 scoped_refptr<PluginModule> ref(obj->instance()->module());
301 // PluginModule. The NPObject will normally handle its lifetime, and it
pepper_broker.cc 109 PepperBroker::PepperBroker(PluginModule* plugin_module)
ppb_video_decoder_impl.cc 101 PluginModule* plugin_module =
pepper_plugin_instance_impl.cc 398 PluginModule* module,
402 base::Bind(&PluginModule::GetPluginInterface, module);
479 PluginModule* module,
    [all...]
  /external/chromium_org/content/test/
ppapi_unittest.h 20 class PluginModule;
30 PluginModule* module() const { return module_.get(); }
45 scoped_refptr<PluginModule> module_;
ppapi_unittest.cc 81 module_ = new PluginModule("Mock plugin", base::FilePath(),
97 PluginModule::ResetHostGlobalsForTest();

Completed in 3502 milliseconds

1 2