blob: 01c8c231a47faa276fbf5a69f89b5a1a0e6549ae (
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.
#ifndef CONTENT_PUBLIC_COMMON_PEPPER_PLUGIN_INFO_H_
#define CONTENT_PUBLIC_COMMON_PEPPER_PLUGIN_INFO_H_
#pragma once
#include <string>
#include <vector>
#include "base/file_path.h"
#include "content/common/content_export.h"
#include "webkit/plugins/ppapi/plugin_module.h"
#include "webkit/plugins/webplugininfo.h"
namespace content {
struct CONTENT_EXPORT PepperPluginInfo {
PepperPluginInfo();
~PepperPluginInfo();
webkit::WebPluginInfo ToWebPluginInfo() const;
// Indicates internal plugins for which there's not actually a library.
// These plugins are implemented in the Chrome binary using a separate set
// of entry points (see internal_entry_points below).
// 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::string name;
std::string description;
std::string version;
std::vector<webkit::WebPluginMimeType> mime_types;
// When is_internal is set, this contains the function pointers to the
// entry points for the internal plugins.
webkit::ppapi::PluginModule::EntryPoints internal_entry_points;
};
} // namespace content
#endif // CONTENT_PUBLIC_COMMON_PEPPER_PLUGIN_INFO_H_
|