summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorflackr@chromium.org <flackr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-05 20:56:42 +0000
committerflackr@chromium.org <flackr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-05 20:56:42 +0000
commit74167507ff63ae935e494751b52ea49d15a722d3 (patch)
treec35fe9a73a9dd9410285410ec49a6586a03d81d9
parent5cfec2bf2a88580de09cdea7f26d1e2d14a29da2 (diff)
downloadchromium_src-74167507ff63ae935e494751b52ea49d15a722d3.zip
chromium_src-74167507ff63ae935e494751b52ea49d15a722d3.tar.gz
chromium_src-74167507ff63ae935e494751b52ea49d15a722d3.tar.bz2
Add VIEWS_EXPORT to NativeViewHostWrapper for r186238 to fix win_aura compile.
BUG=177012 TEST=win_aura bot. TBR=sky Review URL: https://codereview.chromium.org/12435003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@186255 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--ui/views/controls/native/native_view_host_wrapper.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/views/controls/native/native_view_host_wrapper.h b/ui/views/controls/native/native_view_host_wrapper.h
index 7af6f02..3b3cb37 100644
--- a/ui/views/controls/native/native_view_host_wrapper.h
+++ b/ui/views/controls/native/native_view_host_wrapper.h
@@ -6,6 +6,7 @@
#define UI_VIEWS_CONTROLS_NATIVE_NATIVE_VIEW_HOST_WRAPPER_H_
#include "ui/gfx/native_widget_types.h"
+#include "ui/views/views_export.h"
namespace views {
@@ -14,7 +15,7 @@ class NativeViewHost;
// An interface that implemented by an object that wraps a gfx::NativeView on
// a specific platform, used to perform platform specific operations on that
// native view when attached, detached, moved and sized.
-class NativeViewHostWrapper {
+class VIEWS_EXPORT NativeViewHostWrapper {
public:
virtual ~NativeViewHostWrapper() {}