Index: cc/scrollbar_geometry_stub.h |
diff --git a/cc/scrollbar_geometry_stub.h b/cc/scrollbar_geometry_stub.h |
index ed47eefb246acc49b38906c31cad23a114b94282..163ae51b7e7f75e5f7725af092ed341efa96ef26 100644 |
--- a/cc/scrollbar_geometry_stub.h |
+++ b/cc/scrollbar_geometry_stub.h |
@@ -6,6 +6,7 @@ |
#define CCScrollbarGeometryStub_h |
#include "base/memory/scoped_ptr.h" |
+#include "cc/cc_export.h" |
#include <public/WebScrollbarThemeGeometry.h> |
namespace cc { |
@@ -13,7 +14,7 @@ namespace cc { |
// This subclass wraps an existing scrollbar geometry class so that |
// another class can derive from it and override specific functions, while |
// passing through the remaining ones. |
-class ScrollbarGeometryStub : public WebKit::WebScrollbarThemeGeometry { |
+class CC_EXPORT ScrollbarGeometryStub : public NON_EXPORTED_BASE(WebKit::WebScrollbarThemeGeometry) { |
public: |
virtual ~ScrollbarGeometryStub(); |
@@ -44,6 +45,8 @@ protected: |
private: |
scoped_ptr<WebKit::WebScrollbarThemeGeometry> m_geometry; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(ScrollbarGeometryStub); |
}; |
} |