OLD | NEW |
| (Empty) |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef WEBKIT_GLUE_WEBPLUGININFO_H_ | |
6 #define WEBKIT_GLUE_WEBPLUGININFO_H_ | |
7 | |
8 #include <string> | |
9 #include <vector> | |
10 | |
11 #include "base/basictypes.h" | |
12 #include "base/file_path.h" | |
13 | |
14 // Describes a mime type entry for a plugin. | |
15 struct WebPluginMimeType { | |
16 WebPluginMimeType(); | |
17 ~WebPluginMimeType(); | |
18 | |
19 // The name of the mime type (e.g., "application/x-shockwave-flash"). | |
20 std::string mime_type; | |
21 | |
22 // A list of all the file extensions for this mime type. | |
23 std::vector<std::string> file_extensions; | |
24 | |
25 // Description of the mime type. | |
26 string16 description; | |
27 }; | |
28 | |
29 // Describes an available NPAPI plugin. | |
30 struct WebPluginInfo { | |
31 WebPluginInfo(); | |
32 WebPluginInfo(const WebPluginInfo& rhs); | |
33 ~WebPluginInfo(); | |
34 WebPluginInfo& operator=(const WebPluginInfo& rhs); | |
35 | |
36 // Special constructor only used during unit testing: | |
37 WebPluginInfo(const string16& fake_name, | |
38 const string16& fake_version, | |
39 const string16& fake_desc); | |
40 | |
41 // The name of the plugin (i.e. Flash). | |
42 string16 name; | |
43 | |
44 // The path to the plugin file (DLL/bundle/library). | |
45 FilePath path; | |
46 | |
47 // The version number of the plugin file (may be OS-specific) | |
48 string16 version; | |
49 | |
50 // A description of the plugin that we get from its version info. | |
51 string16 desc; | |
52 | |
53 // A list of all the mime types that this plugin supports. | |
54 std::vector<WebPluginMimeType> mime_types; | |
55 | |
56 // Whether the plugin is enabled. | |
57 bool enabled; | |
58 }; | |
59 | |
60 #endif // WEBKIT_GLUE_WEBPLUGININFO_H_ | |
OLD | NEW |