blob: 60762c5b362eed56fb42fcfdfa7b0a9bba1d6b11 (
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
|
// 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 CHROME_COMMON_PEPPER_PLUGIN_REGISTRY_H_
#define CHROME_COMMON_PEPPER_PLUGIN_REGISTRY_H_
#pragma once
#include <map>
#include <string>
#include <vector>
#include "base/file_path.h"
#include "webkit/glue/plugins/pepper_plugin_module.h"
struct PepperPluginInfo {
PepperPluginInfo();
~PepperPluginInfo();
// Indicates internal plugins for which there's not actually a library.
// Defaults to false.
bool is_internal;
// True when this plugin should be run out of process. Defaults to false.
bool is_out_of_process;
FilePath path; // Internal plugins have "internal-[name]" as path.
std::vector<std::string> mime_types;
std::string name;
std::string description;
std::string file_extensions;
std::string type_descriptions;
};
// This class holds references to all of the known pepper plugin modules.
class PepperPluginRegistry {
public:
static const char* kPDFPluginName;
static const char* kPDFPluginMimeType;
static const char* kPDFPluginExtension;
static const char* kPDFPluginDescription;
static PepperPluginRegistry* GetInstance();
// Returns the list of known pepper plugins. This method is static so that
// it can be used by the browser process, which has no need to load the
// pepper plugin modules.
static void GetList(std::vector<PepperPluginInfo>* plugins);
// Loads the (native) libraries but does not initialize them (i.e., does not
// call PPP_InitializeModule). This is needed by the zygote on Linux to get
// access to the plugins before entering the sandbox.
static void PreloadModules();
// Returns true if the given plugin is a pepper plugin that should be run
// out of process.
bool RunOutOfProcessForPlugin(const FilePath& path) const;
// Returns a preloaded module for the given path. This only works for
// non-out-of-process plugins since we preload them so they will run in the
// sandbox. Returns NULL if the plugin hasn't been preloaded.
pepper::PluginModule* GetModule(const FilePath& path) const;
~PepperPluginRegistry();
private:
static void GetPluginInfoFromSwitch(std::vector<PepperPluginInfo>* plugins);
static void GetExtraPlugins(std::vector<PepperPluginInfo>* plugins);
struct InternalPluginInfo : public PepperPluginInfo {
InternalPluginInfo(); // Sets |is_internal|.
pepper::PluginModule::EntryPoints entry_points;
};
typedef std::vector<InternalPluginInfo> InternalPluginInfoList;
static void GetInternalPluginInfo(InternalPluginInfoList* plugin_info);
PepperPluginRegistry();
typedef scoped_refptr<pepper::PluginModule> ModuleHandle;
typedef std::map<FilePath, ModuleHandle> ModuleMap;
ModuleMap modules_;
};
#endif // CHROME_COMMON_PEPPER_PLUGIN_REGISTRY_H_
|