OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NPChannelBase
(Results
1 - 14
of
14
) sorted by null
/external/chromium_org/content/child/npapi/
np_channel_base.cc
24
typedef base::hash_map<std::string, scoped_refptr<
NPChannelBase
> > ChannelMap;
28
scoped_refptr<
NPChannelBase
> current_channel;
32
// Workaround for http://crbug.com/298179 -
NPChannelBase
is only intended
64
NPChannelBase
*
NPChannelBase
::GetChannel(
76
scoped_refptr<
NPChannelBase
> channel;
107
void
NPChannelBase
::Broadcast(IPC::Message* message) {
116
NPChannelBase
::
NPChannelBase
()
127
NPChannelBase
::~NPChannelBase()
[
all
...]
npobject_util.h
26
class
NPChannelBase
;
49
NPChannelBase
* channel,
58
NPChannelBase
* channel,
np_channel_base.h
57
class
NPChannelBase
: public IPC::Listener,
59
public base::RefCountedThreadSafe<
NPChannelBase
> {
104
// Returns the most recent
NPChannelBase
to have received a message
106
static
NPChannelBase
* GetCurrentChannel();
120
typedef
NPChannelBase
* (*ChannelFactory)();
122
friend class base::RefCountedThreadSafe<
NPChannelBase
>;
124
virtual ~
NPChannelBase
();
126
// Returns a
NPChannelBase
derived object for the given channel name.
131
static
NPChannelBase
* GetChannel(
140
NPChannelBase
();
[
all
...]
npobject_stub.h
23
class
NPChannelBase
;
36
NPChannelBase
* channel,
89
scoped_refptr<
NPChannelBase
> channel_;
npobject_proxy.h
22
class
NPChannelBase
;
29
// channel (specifically, a
NPChannelBase
). The NPObjectStub on the other
38
static NPObject* Create(
NPChannelBase
* channel,
47
NPChannelBase
* channel() { return channel_.get(); }
102
NPObjectProxy(
NPChannelBase
* channel,
118
scoped_refptr<
NPChannelBase
> channel_;
npobject_proxy.cc
62
NPChannelBase
* channel,
86
NPObject* NPObjectProxy::Create(
NPChannelBase
* channel,
194
scoped_refptr<
NPChannelBase
> channel_copy = proxy->channel_;
284
scoped_refptr<
NPChannelBase
> channel(proxy->channel_);
421
scoped_refptr<
NPChannelBase
> channel_copy = proxy->channel_;
495
scoped_refptr<
NPChannelBase
> channel(proxy->channel_);
npobject_util.cc
91
NPChannelBase
* renderer_channel =
NPChannelBase
::GetCurrentChannel();
151
NPChannelBase
* channel,
230
NPChannelBase
* channel,
npobject_stub.cc
27
NPChannelBase
* channel,
/external/chromium_org/content/renderer/npapi/
plugin_channel_host.h
17
class PluginChannelHost : public
NPChannelBase
{
38
//
NPChannelBase
override:
45
NPChannelBase
::Broadcast(message);
55
static
NPChannelBase
* ClassFactory() { return new PluginChannelHost(); }
plugin_channel_host.cc
65
static_cast<PluginChannelHost*>(
NPChannelBase
::GetChannel(
84
return
NPChannelBase
::Init(ipc_message_loop, create_pipe_now, shutdown_event);
97
NPChannelBase
::AddRoute(route_id, listener, npobject);
115
NPChannelBase
::RemoveRoute(route_id);
140
bool result =
NPChannelBase
::Send(msg);
145
return
NPChannelBase
::Send(msg);
159
NPChannelBase
::OnChannelError();
/external/chromium_org/content/plugin/
plugin_channel.h
24
class PluginChannel : public
NPChannelBase
{
62
//
NPChannelBase
::
76
static
NPChannelBase
* ClassFactory() { return new PluginChannel(); }
plugin_channel.cc
151
static_cast<PluginChannel*>(
NPChannelBase
::GetChannel(
176
bool result =
NPChannelBase
::Send(msg);
186
return
NPChannelBase
::OnMessageReceived(msg);
190
NPChannelBase
::OnChannelError();
234
if (!
NPChannelBase
::Init(ipc_message_loop, create_pipe_now, shutdown_event))
plugin_thread.cc
115
NPChannelBase
::CleanupChannels();
/external/chromium_org/content/renderer/
render_thread_impl.cc
668
NPChannelBase
::CleanupChannels();
[
all
...]
Completed in 211 milliseconds