diff options
author | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-02 19:07:50 +0000 |
---|---|---|
committer | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-02 19:07:50 +0000 |
commit | 51678ad73ad231bd77862f53e18e629420a26042 (patch) | |
tree | c54dc34d5d64fb1c796aa52573bbd23c24f2ca65 /webkit/plugins/sad_plugin.h | |
parent | 8470f4693faac244f839c38358512244b47cb680 (diff) | |
download | chromium_src-51678ad73ad231bd77862f53e18e629420a26042.zip chromium_src-51678ad73ad231bd77862f53e18e629420a26042.tar.gz chromium_src-51678ad73ad231bd77862f53e18e629420a26042.tar.bz2 |
Add exports needed for glue to build as a component.
This adds WEBKIT_GLUE_EXPORT, WEBKIT_PLUGINS_EXPORT, and WEBKIT_EXTENSIONS_EXPORT macros that are used by the files in
webkit/{glue,plugins,extensions} to show what needs to be exported from a DLL.
R=darin@chromium.org
BUG=98755
TEST=waterfall stays green.
Review URL: http://codereview.chromium.org/8741006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112748 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/plugins/sad_plugin.h')
-rw-r--r-- | webkit/plugins/sad_plugin.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/webkit/plugins/sad_plugin.h b/webkit/plugins/sad_plugin.h index 63b0d7f..d9ed70b 100644 --- a/webkit/plugins/sad_plugin.h +++ b/webkit/plugins/sad_plugin.h @@ -6,6 +6,7 @@ #define WEBKIT_PLUGINS_SAD_PLUGIN_H_ #include "third_party/WebKit/Source/WebKit/chromium/public/WebCanvas.h" +#include "webkit/plugins/webkit_plugins_export.h" class SkBitmap; @@ -17,9 +18,9 @@ namespace webkit { // Paints the sad plugin to the given canvas for the given plugin bounds. This // is used by both the NPAPI and the PPAPI out-of-process plugin impls. -void PaintSadPlugin(WebKit::WebCanvas* canvas, - const gfx::Rect& plugin_rect, - const SkBitmap& sad_plugin_bitmap); +WEBKIT_PLUGINS_EXPORT void PaintSadPlugin(WebKit::WebCanvas* canvas, + const gfx::Rect& plugin_rect, + const SkBitmap& sad_plugin_bitmap); } // namespace |