blob: cbed850e836e8cc5f2fb1348a769e2d15727dc2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_RENDERER_PEPPER_PEPPER_BROKER_IMPL_H_
#define CONTENT_RENDERER_PEPPER_PEPPER_BROKER_IMPL_H_
#include "base/memory/ref_counted.h"
#include "content/common/content_export.h"
#include "ppapi/proxy/proxy_channel.h"
#include "webkit/plugins/ppapi/plugin_delegate.h"
#include "webkit/plugins/ppapi/ppb_broker_impl.h"
namespace IPC {
struct ChannelHandle;
}
namespace ppapi {
namespace proxy {
class BrokerDispatcher;
}
}
namespace webkit {
namespace ppapi {
class PluginModule;
}
}
namespace content {
class PepperPluginDelegateImpl;
// This object is NOT thread-safe.
class CONTENT_EXPORT PepperBrokerDispatcherWrapper {
public:
PepperBrokerDispatcherWrapper();
~PepperBrokerDispatcherWrapper();
bool Init(base::ProcessHandle plugin_process_handle,
const IPC::ChannelHandle& channel_handle);
int32_t SendHandleToBroker(PP_Instance instance,
base::SyncSocket::Handle handle);
private:
scoped_ptr<ppapi::proxy::BrokerDispatcher> dispatcher_;
scoped_ptr<ppapi::proxy::ProxyChannel::Delegate> dispatcher_delegate_;
};
class PepperBrokerImpl : public webkit::ppapi::PluginDelegate::Broker,
public base::RefCountedThreadSafe<PepperBrokerImpl>{
public:
PepperBrokerImpl(webkit::ppapi::PluginModule* plugin_module,
PepperPluginDelegateImpl* delegate_);
// PepperBroker implementation.
virtual void Connect(webkit::ppapi::PPB_Broker_Impl* client) OVERRIDE;
virtual void Disconnect(webkit::ppapi::PPB_Broker_Impl* client) OVERRIDE;
// Called when the channel to the broker has been established.
void OnBrokerChannelConnected(base::ProcessHandle broker_process_handle,
const IPC::ChannelHandle& channel_handle);
// Connects the plugin to the broker via a pipe.
void ConnectPluginToBroker(webkit::ppapi::PPB_Broker_Impl* client);
// Asynchronously sends a pipe to the broker.
int32_t SendHandleToBroker(PP_Instance instance,
base::SyncSocket::Handle handle);
protected:
friend class base::RefCountedThreadSafe<PepperBrokerImpl>;
virtual ~PepperBrokerImpl();
scoped_ptr<PepperBrokerDispatcherWrapper> dispatcher_;
// A map of pointers to objects that have requested a connection to the weak
// pointer we can use to reference them. The mapping is needed so we can clean
// up entries for objects that may have been deleted.
typedef std::map<webkit::ppapi::PPB_Broker_Impl*,
base::WeakPtr<webkit::ppapi::PPB_Broker_Impl> > ClientMap;
ClientMap pending_connects_;
// Pointer to the associated plugin module.
// Always set and cleared at the same time as the module's pointer to this.
webkit::ppapi::PluginModule* plugin_module_;
base::WeakPtr<PepperPluginDelegateImpl> delegate_;
DISALLOW_COPY_AND_ASSIGN(PepperBrokerImpl);
};
} // namespace content
#endif // CONTENT_RENDERER_PEPPER_PEPPER_BROKER_IMPL_H_
|