Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Unified Diff: webkit/plugins/npapi/plugin_host.h

Issue 8741006: Add exports needed for glue to build as a component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase to r112585 Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/plugins/npapi/plugin_group.h ('k') | webkit/plugins/npapi/plugin_lib.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/npapi/plugin_host.h
diff --git a/webkit/plugins/npapi/plugin_host.h b/webkit/plugins/npapi/plugin_host.h
index 2666e28bcfc15fe8cae8822bf637679837e8b5e2..4eb38dc399bdd7a3d08804cf690721b6382dceb0 100644
--- a/webkit/plugins/npapi/plugin_host.h
+++ b/webkit/plugins/npapi/plugin_host.h
@@ -13,6 +13,7 @@
#include "base/memory/ref_counted.h"
#include "third_party/npapi/bindings/npapi.h"
#include "third_party/npapi/bindings/nphostapi.h"
+#include "webkit/plugins/webkit_plugins_export.h"
namespace webkit {
namespace npapi {
@@ -28,7 +29,7 @@ class PluginHost : public base::RefCounted<PluginHost> {
public:
// Access the single PluginHost instance. Callers
// must call deref() when finished with the object.
- static PluginHost* Singleton();
+ WEBKIT_PLUGINS_EXPORT static PluginHost* Singleton();
// The table of functions provided to the plugin.
NPNetscapeFuncs* host_functions() { return &host_funcs_; }
@@ -43,7 +44,7 @@ class PluginHost : public base::RefCounted<PluginHost> {
std::vector<std::string>* values,
std::vector<char>* body);
- void PatchNPNetscapeFuncs(NPNetscapeFuncs* overrides);
+ WEBKIT_PLUGINS_EXPORT void PatchNPNetscapeFuncs(NPNetscapeFuncs* overrides);
private:
friend class base::RefCounted<PluginHost>;
« no previous file with comments | « webkit/plugins/npapi/plugin_group.h ('k') | webkit/plugins/npapi/plugin_lib.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698