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