diff options
author | spang@chromium.org <spang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-21 07:59:20 +0000 |
---|---|---|
committer | spang@chromium.org <spang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-21 07:59:20 +0000 |
commit | 25db7abb6e4ef1c01858d027eb01add301882469 (patch) | |
tree | eed065b6b7da76fa5fca93477c691dcabb6d061d /content/browser/aura | |
parent | 60586a2d13ca696f61c7d1dd74778d334bcb4a15 (diff) | |
download | chromium_src-25db7abb6e4ef1c01858d027eb01add301882469.zip chromium_src-25db7abb6e4ef1c01858d027eb01add301882469.tar.gz chromium_src-25db7abb6e4ef1c01858d027eb01add301882469.tar.bz2 |
Fix component=shared_library build for ozone
We need to export any classes that are used in unit tests.
TBR=danakj
Review URL: https://codereview.chromium.org/78783004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@236451 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/aura')
-rw-r--r-- | content/browser/aura/software_output_device_ozone.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/content/browser/aura/software_output_device_ozone.h b/content/browser/aura/software_output_device_ozone.h index bd5efe2..7ebf430 100644 --- a/content/browser/aura/software_output_device_ozone.h +++ b/content/browser/aura/software_output_device_ozone.h @@ -6,6 +6,7 @@ #define CONTENT_BROWSER_AURA_SOFTWARE_OUTPUT_DEVICE_OZONE_H_ #include "cc/output/software_output_device.h" +#include "content/common/content_export.h" #include "ui/gfx/native_widget_types.h" namespace ui { @@ -17,7 +18,8 @@ namespace content { // Ozone implementation which relies on software rendering. Ozone will present // an accelerated widget as a SkCanvas. SoftwareOutputDevice will then use the // Ozone provided canvas to draw. -class SoftwareOutputDeviceOzone : public cc::SoftwareOutputDevice { +class CONTENT_EXPORT SoftwareOutputDeviceOzone + : public cc::SoftwareOutputDevice { public: explicit SoftwareOutputDeviceOzone(ui::Compositor* compositor); virtual ~SoftwareOutputDeviceOzone(); |