| Index: webkit/plugins/npapi/webplugin_impl.h
|
| diff --git a/webkit/plugins/npapi/webplugin_impl.h b/webkit/plugins/npapi/webplugin_impl.h
|
| index ec0f30fc1c0e5a6f9c469b87a84db6c5043c258d..f1e5fd0db350ee041bf2a37c5362fa32745bbb96 100644
|
| --- a/webkit/plugins/npapi/webplugin_impl.h
|
| +++ b/webkit/plugins/npapi/webplugin_impl.h
|
| @@ -21,6 +21,7 @@
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebVector.h"
|
| #include "ui/gfx/native_widget_types.h"
|
| #include "webkit/plugins/npapi/webplugin.h"
|
| +#include "webkit/plugins/webkit_plugins_export.h"
|
|
|
| namespace WebKit {
|
| class WebFrame;
|
| @@ -43,9 +44,10 @@ class WebPluginPageDelegate;
|
| // This is the WebKit side of the plugin implementation that forwards calls,
|
| // after changing out of WebCore types, to a delegate. The delegate may
|
| // be in a different process.
|
| -class WebPluginImpl : public WebPlugin,
|
| - public WebKit::WebPlugin,
|
| - public WebKit::WebURLLoaderClient {
|
| +class WEBKIT_PLUGINS_EXPORT WebPluginImpl :
|
| + NON_EXPORTED_BASE(public WebPlugin),
|
| + NON_EXPORTED_BASE(public WebKit::WebPlugin),
|
| + NON_EXPORTED_BASE(public WebKit::WebURLLoaderClient) {
|
| public:
|
| WebPluginImpl(
|
| WebKit::WebFrame* frame,
|
|
|