blob: e5acc4c0c77258bc6ad3e27aa540e64349555997 (
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
|
// Copyright (c) 2011 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.
#include "ppapi/proxy/plugin_globals.h"
#include "ppapi/proxy/plugin_dispatcher.h"
namespace ppapi {
namespace proxy {
PluginGlobals* PluginGlobals::plugin_globals_ = NULL;
PluginGlobals::PluginGlobals()
: ppapi::PpapiGlobals(),
plugin_proxy_delegate_(NULL) {
DCHECK(!plugin_globals_);
plugin_globals_ = this;
}
PluginGlobals::~PluginGlobals() {
DCHECK(plugin_globals_ == this);
plugin_globals_ = NULL;
}
ResourceTracker* PluginGlobals::GetResourceTracker() {
return &plugin_resource_tracker_;
}
VarTracker* PluginGlobals::GetVarTracker() {
return &plugin_var_tracker_;
}
FunctionGroupBase* PluginGlobals::GetFunctionAPI(PP_Instance inst, ApiID id) {
PluginDispatcher* dispatcher = PluginDispatcher::GetForInstance(inst);
if (dispatcher)
return dispatcher->GetFunctionAPI(id);
return NULL;
}
PP_Module PluginGlobals::GetModuleForInstance(PP_Instance instance) {
// Currently proxied plugins don't use the PP_Module for anything useful.
return 0;
}
} // namespace proxy
} // namespace ppapi
|