| Index: cc/layer_impl.h
|
| diff --git a/cc/layer_impl.h b/cc/layer_impl.h
|
| index 05f3b44f374c6259dd281adb592abeaf90ce17d3..e5a32b5a009987cd763754aed67cd0649e48ce75 100644
|
| --- a/cc/layer_impl.h
|
| +++ b/cc/layer_impl.h
|
| @@ -5,11 +5,14 @@
|
| #ifndef CCLayerImpl_h
|
| #define CCLayerImpl_h
|
|
|
| +#include <string>
|
| +
|
| #include "FloatRect.h"
|
| #include "IntRect.h"
|
| #include "Region.h"
|
| #include "base/logging.h"
|
| #include "base/memory/scoped_ptr.h"
|
| +#include "cc/cc_export.h"
|
| #include "cc/input_handler.h"
|
| #include "cc/layer_animation_controller.h"
|
| #include "cc/render_pass.h"
|
| @@ -20,7 +23,6 @@
|
| #include "third_party/skia/include/core/SkColor.h"
|
| #include <public/WebFilterOperations.h>
|
| #include <public/WebTransformationMatrix.h>
|
| -#include <string>
|
|
|
| namespace cc {
|
|
|
| @@ -34,7 +36,7 @@ class Layer;
|
|
|
| struct AppendQuadsData;
|
|
|
| -class LayerImpl : public LayerAnimationControllerClient {
|
| +class CC_EXPORT LayerImpl : public LayerAnimationControllerClient {
|
| public:
|
| static scoped_ptr<LayerImpl> create(int id)
|
| {
|
| @@ -394,6 +396,8 @@ private:
|
|
|
| // Manages scrollbars for this layer
|
| scoped_ptr<ScrollbarAnimationController> m_scrollbarAnimationController;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(LayerImpl);
|
| };
|
|
|
| void sortLayers(std::vector<LayerImpl*>::iterator first, std::vector<LayerImpl*>::iterator end, LayerSorter*);
|
|
|