OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PluginModule
(Results
1 - 25
of
32
) 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
175
typedef std::set<
PluginModule
*> PluginModuleSet;
373
PluginModule
* module,
390
//
PluginModule
----------------------------------------------------------------
392
PluginModule
::
PluginModule
(const std::string& name,
413
PluginModule
::~
PluginModule
() {
451
void
PluginModule
::SetRendererPpapiHost(
456
bool
PluginModule
::InitAsInternalPlugin(
465
bool
PluginModule
::InitAsLibrary(const base::FilePath& path)
[
all
...]
plugin_module.h
61
class CONTENT_EXPORT
PluginModule
: public base::RefCounted<
PluginModule
>,
62
public base::SupportsWeakPtr<
PluginModule
> {
72
PluginModule
(const std::string& name,
97
scoped_refptr<
PluginModule
> CreateModuleForExternalPluginInstance();
186
// Create a new HostDispatcher for proxying, hook it to the
PluginModule
,
199
// existing HostGlobals. A new one will be constructed when a
PluginModule
is
212
static scoped_refptr<
PluginModule
> Create(RenderFrameImpl* render_frame,
217
friend class base::RefCounted<
PluginModule
>;
218
~
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 =
119
new
PluginModule
(current.name,
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,
109
RendererPpapiHostImpl(
PluginModule
* module,
112
RendererPpapiHostImpl(
PluginModule
* module,
123
PluginModule
* module_; // Non-owning pointer.
host_globals.h
18
class
PluginModule
;
62
PP_Module AddModule(
PluginModule
* module);
70
PluginModule
* GetModule(PP_Module module);
102
// Tracks all live modules. The pointers are non-owning, the
PluginModule
104
typedef std::map<PP_Module,
PluginModule
*> ModuleMap;
pepper_broker.h
27
class
PluginModule
;
48
explicit PepperBroker(
PluginModule
* plugin_module);
96
PluginModule
* plugin_module_;
host_globals.cc
44
void GetAllContainersForModule(
PluginModule
* module, ContainerSet* containers) {
45
const
PluginModule
::PluginInstanceSet& instances = module->GetAllInstances();
46
for (
PluginModule
::PluginInstanceSet::const_iterator i = instances.begin();
171
PluginModule
* module = GetModule(pp_module);
198
PP_Module HostGlobals::AddModule(
PluginModule
* module) {
228
PluginModule
* HostGlobals::GetModule(PP_Module module) {
pepper_webplugin_impl.h
28
class
PluginModule
;
34
PepperWebPluginImpl(
PluginModule
* module,
renderer_ppapi_host_impl.cc
41
PluginModule
* module,
57
PluginModule
* module,
78
PluginModule
* module,
93
PluginModule
* module,
pepper_plugin_instance_impl.h
108
class
PluginModule
;
132
PluginModule
* module,
136
PluginModule
* module() const { return module_.get(); }
512
PP_ExternalPluginResult ResetAsProxied(scoped_refptr<
PluginModule
> module);
519
bool IsValidInstanceOf(
PluginModule
* module);
589
PluginModule
* module,
689
scoped_refptr<
PluginModule
> module_;
694
scoped_refptr<
PluginModule
> original_module_;
[
all
...]
host_array_buffer_var.cc
75
PluginModule
* pm = hg->GetModule(hg->GetModuleForInstance(instance));
host_dispatcher_wrapper.cc
19
PluginModule
* module,
mock_renderer_ppapi_host.h
17
class
PluginModule
;
ppb_broker_impl.cc
65
PluginModule
* module = plugin_instance->module();
pepper_webplugin_impl.cc
50
scoped_refptr<
PluginModule
> module;
57
PepperWebPluginImpl::PepperWebPluginImpl(
PluginModule
* plugin_module,
ppb_scrollbar_impl.cc
161
PluginModule
* plugin_module =
182
PluginModule
* plugin_module =
/external/chromium_org/mojo/examples/pepper_container_app/
plugin_module.h
25
class
PluginModule
: public base::RefCounted<
PluginModule
> {
27
PluginModule
();
37
friend class base::RefCounted<
PluginModule
>;
47
~
PluginModule
();
55
DISALLOW_COPY_AND_ASSIGN(
PluginModule
);
plugin_module.cc
34
PluginModule
::EntryPoints::EntryPoints() : get_interface(NULL),
38
PluginModule
::
PluginModule
() : callback_tracker_(new ppapi::CallbackTracker) {
42
PluginModule
::~
PluginModule
() {
49
scoped_ptr<PluginInstance>
PluginModule
::CreateInstance() {
53
const void*
PluginModule
::GetPluginInterface(const char* name) const {
59
void
PluginModule
::Initialize() {
pepper_container_app.cc
32
plugin_module_(new
PluginModule
) {}
97
scoped_refptr<
PluginModule
> plugin_module_;
plugin_instance.h
21
explicit PluginInstance(scoped_refptr<
PluginModule
> plugin_module);
38
PluginModule
* plugin_module() { return plugin_module_.get(); }
176
scoped_refptr<
PluginModule
> plugin_module_;
/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 1481 milliseconds
1
2