Index: content/public/plugin/content_plugin_client.h |
=================================================================== |
--- content/public/plugin/content_plugin_client.h (revision 139356) |
+++ content/public/plugin/content_plugin_client.h (working copy) |
@@ -12,10 +12,10 @@ |
namespace content { |
// Embedder API for participating in plugin logic. |
-class ContentPluginClient { |
+class CONTENT_EXPORT ContentPluginClient { |
tfarina
2012/05/30 00:26:49
does this need a virtual destructor?
jam
2012/05/30 14:50:21
yep according to the style guide, i'll add one.
|
public: |
// Notifies that a plugin process has started. |
- virtual void PluginProcessStarted(const string16& plugin_name) = 0; |
+ virtual void PluginProcessStarted(const string16& plugin_name) {} |
}; |
} // namespace content |