OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InterfaceProxy
(Results
1 - 25
of
56
) sorted by null
1
2
3
/external/chromium_org/ppapi/proxy/
interface_proxy.cc
13
InterfaceProxy
::
InterfaceProxy
(Dispatcher* dispatcher)
17
InterfaceProxy
::~
InterfaceProxy
() {
20
bool
InterfaceProxy
::Send(IPC::Message* msg) {
interface_proxy.h
21
class
InterfaceProxy
: public IPC::Listener, public IPC::Sender {
25
typedef
InterfaceProxy
* (*Factory)(Dispatcher* dispatcher);
42
InterfaceProxy
::Factory create_proxy;
45
virtual ~
InterfaceProxy
();
58
InterfaceProxy
(Dispatcher* dispatcher);
ppp_graphics_3d_proxy.cc
32
InterfaceProxy
* CreateGraphics3DProxy(Dispatcher* dispatcher) {
39
:
InterfaceProxy
(dispatcher),
51
const
InterfaceProxy
::Info* PPP_Graphics3D_Proxy::GetInfo() {
dispatcher.cc
33
InterfaceProxy
* Dispatcher::GetInterfaceProxy(ApiID id) {
34
InterfaceProxy
* proxy = proxies_[id].get();
37
InterfaceProxy
::Factory factory =
68
InterfaceProxy
* proxy = GetInterfaceProxy(
interface_list.h
48
InterfaceProxy
::Factory GetFactoryForID(ApiID id) const;
79
void AddProxy(ApiID id,
InterfaceProxy
::Factory factory);
90
void AddPPP(const
InterfaceProxy
::Info* info);
97
InterfaceProxy
::Factory id_to_factory_[API_ID_COUNT];
ppb_core_proxy.h
18
class PPB_Core_Proxy : public
InterfaceProxy
{
25
//
InterfaceProxy
implementation.
ppb_x509_certificate_private_proxy.h
18
: public
InterfaceProxy
{
24
//
InterfaceProxy
implementation.
ppp_graphics_3d_proxy.h
16
class PPP_Graphics3D_Proxy : public
InterfaceProxy
{
23
//
InterfaceProxy
implementation.
ppp_instance_private_proxy.h
20
class PPP_Instance_Private_Proxy : public
InterfaceProxy
{
28
//
InterfaceProxy
implementation.
ppp_messaging_proxy.h
18
class PPP_Messaging_Proxy : public
InterfaceProxy
{
25
//
InterfaceProxy
implementation.
ppp_mouse_lock_proxy.h
16
class PPP_MouseLock_Proxy : public
InterfaceProxy
{
23
//
InterfaceProxy
implementation.
ppp_text_input_proxy.h
16
class PPP_TextInput_Proxy : public
InterfaceProxy
{
23
//
InterfaceProxy
implementation.
dispatcher.h
40
//
InterfaceProxy
---------------------->
InterfaceProxy
44
//
InterfaceProxy
<----------------------
InterfaceProxy
63
InterfaceProxy
* GetInterfaceProxy(ApiID id);
108
scoped_ptr<
InterfaceProxy
> proxies_[API_ID_COUNT];
ppp_input_event_proxy.h
18
class PPP_InputEvent_Proxy : public
InterfaceProxy
{
25
//
InterfaceProxy
implementation.
ppp_instance_private_proxy.cc
37
InterfaceProxy
* CreateInstancePrivateProxy(Dispatcher* dispatcher) {
44
:
InterfaceProxy
(dispatcher),
56
const
InterfaceProxy
::Info* PPP_Instance_Private_Proxy::GetInfo() {
ppp_messaging_proxy.cc
48
InterfaceProxy
* CreateMessagingProxy(Dispatcher* dispatcher) {
55
:
InterfaceProxy
(dispatcher),
67
const
InterfaceProxy
::Info* PPP_Messaging_Proxy::GetInfo() {
ppp_mouse_lock_proxy.cc
38
InterfaceProxy
* CreateMouseLockProxy(Dispatcher* dispatcher) {
45
:
InterfaceProxy
(dispatcher),
57
const
InterfaceProxy
::Info* PPP_MouseLock_Proxy::GetInfo() {
ppp_input_event_proxy.cc
57
InterfaceProxy
* CreateInputEventProxy(Dispatcher* dispatcher) {
64
:
InterfaceProxy
(dispatcher),
76
const
InterfaceProxy
::Info* PPP_InputEvent_Proxy::GetInfo() {
ppb_broker_proxy.h
21
class PPB_Broker_Proxy : public
InterfaceProxy
{
28
//
InterfaceProxy
implementation.
ppb_flash_message_loop_proxy.h
27
: public
InterfaceProxy
,
35
//
InterfaceProxy
implementation.
ppb_testing_proxy.h
23
class PPB_Testing_Proxy : public
InterfaceProxy
{
30
//
InterfaceProxy
implementation.
ppp_printing_proxy.h
22
class PPP_Printing_Proxy : public
InterfaceProxy
{
29
//
InterfaceProxy
implementation.
ppp_video_decoder_proxy.h
19
class PPP_VideoDecoder_Proxy : public
InterfaceProxy
{
26
//
InterfaceProxy
implementation.
ppb_x509_certificate_private_proxy.cc
56
:
InterfaceProxy
(dispatcher) {
ppp_instance_proxy.h
28
class PPP_Instance_Proxy : public
InterfaceProxy
{
39
//
InterfaceProxy
implementation.
Completed in 278 milliseconds
1
2
3