| Index: webkit/glue/plugins/webplugininfo.h
|
| diff --git a/webkit/glue/plugins/webplugininfo.h b/webkit/glue/plugins/webplugininfo.h
|
| index 9d2ab6e305880b35dd241150f3f59941dacaec75..34eff3d5ae9d2ae6910d7104e95438547e3c4fa8 100644
|
| --- a/webkit/glue/plugins/webplugininfo.h
|
| +++ b/webkit/glue/plugins/webplugininfo.h
|
| @@ -13,6 +13,9 @@
|
|
|
| // Describes a mime type entry for a plugin.
|
| struct WebPluginMimeType {
|
| + WebPluginMimeType();
|
| + ~WebPluginMimeType();
|
| +
|
| // The name of the mime type (e.g., "application/x-shockwave-flash").
|
| std::string mime_type;
|
|
|
| @@ -25,6 +28,16 @@ struct WebPluginMimeType {
|
|
|
| // Describes an available NPAPI plugin.
|
| struct WebPluginInfo {
|
| + WebPluginInfo();
|
| + WebPluginInfo(const WebPluginInfo& rhs);
|
| + ~WebPluginInfo();
|
| + WebPluginInfo& operator=(const WebPluginInfo& rhs);
|
| +
|
| + // Special constructor only used during unit testing:
|
| + WebPluginInfo(const string16& fake_name,
|
| + const string16& fake_version,
|
| + const string16& fake_desc);
|
| +
|
| // The name of the plugin (i.e. Flash).
|
| string16 name;
|
|
|
|
|