Index: cc/layers/picture_layer_impl.h |
diff --git a/cc/layers/picture_layer_impl.h b/cc/layers/picture_layer_impl.h |
index 9e54f43051fa7b337bc212c492b12bf8b6cf31c1..347deb023beae71e31743c80c1d79000f3f9a6f0 100644 |
--- a/cc/layers/picture_layer_impl.h |
+++ b/cc/layers/picture_layer_impl.h |
@@ -5,6 +5,7 @@ |
#ifndef CC_LAYERS_PICTURE_LAYER_IMPL_H_ |
#define CC_LAYERS_PICTURE_LAYER_IMPL_H_ |
+#include "cc/base/cc_export.h" |
#include "cc/base/scoped_ptr_vector.h" |
#include "cc/layers/layer_impl.h" |
#include "cc/resources/picture_layer_tiling.h" |
@@ -18,8 +19,9 @@ namespace cc { |
struct AppendQuadsData; |
class QuadSink; |
-class CC_EXPORT PictureLayerImpl : public LayerImpl, |
- public PictureLayerTilingClient { |
+class CC_EXPORT PictureLayerImpl |
+ : public LayerImpl, |
+ NON_EXPORTED_BASE(public PictureLayerTilingClient) { |
public: |
static scoped_ptr<PictureLayerImpl> Create(LayerTreeImpl* tree_impl, int id) { |
return make_scoped_ptr(new PictureLayerImpl(tree_impl, id)); |