blob: 79eafb1d4674265a07a59a6d831772556569d063 (
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
|
// Copyright (c) 2010 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 PPAPI_PROXY_PLUGIN_DISPATCHER_H_
#define PPAPI_PROXY_PLUGIN_DISPATCHER_H_
#include <string>
#include "base/process.h"
#include "base/scoped_ptr.h"
#include "ppapi/proxy/callback_tracker.h"
#include "ppapi/proxy/dispatcher.h"
#include "ppapi/proxy/plugin_resource_tracker.h"
#include "ppapi/proxy/plugin_var_tracker.h"
class MessageLoop;
namespace base {
class WaitableEvent;
}
namespace pp {
namespace proxy {
class PluginDispatcher : public Dispatcher {
public:
// Constructor for the plugin side. The init and shutdown functions will be
// will be automatically called when requested by the renderer side. The
// module ID will be set upon receipt of the InitializeModule message.
//
// You must call Dispatcher::InitWithChannel after the constructor.
PluginDispatcher(base::ProcessHandle remote_process_handle,
GetInterfaceFunc get_interface,
InitModuleFunc init_module,
ShutdownModuleFunc shutdown_module);
~PluginDispatcher();
// The plugin maintains a global Dispatcher pointer. There is only one since
// there is only one connection to the browser. Don't call this on the
// browser side, see GetForInstnace.
static PluginDispatcher* Get();
static void SetGlobal(PluginDispatcher* dispatcher);
// Dispatcher overrides.
virtual bool IsPlugin() const { return true; }
// IPC::Channel::Listener implementation.
virtual void OnMessageReceived(const IPC::Message& msg);
// Returns the resource tracker for the plugin. In the browser process this
// will return NULL.
PluginResourceTracker* plugin_resource_tracker() {
return plugin_resource_tracker_.get();
}
// Returns the var tracker for the plugin. In the browser process this
// will return NULL.
PluginVarTracker* plugin_var_tracker() {
return plugin_var_tracker_.get();
}
private:
// IPC message handler.
void OnInitializeModule(PP_Module pp_module, bool* result);
InitModuleFunc init_module_;
ShutdownModuleFunc shutdown_module_;
scoped_ptr<PluginResourceTracker> plugin_resource_tracker_;
scoped_ptr<PluginVarTracker> plugin_var_tracker_;
DISALLOW_COPY_AND_ASSIGN(PluginDispatcher);
};
} // namespace proxy
} // namespace pp
#endif // PPAPI_PROXY_PLUGIN_DISPATCHER_H_
|