Index: cc/TiledLayerChromium.cpp |
diff --git a/cc/TiledLayerChromium.cpp b/cc/TiledLayerChromium.cpp |
index 75bd57d9b6f960ef46ba3c3e29123e8516b29b55..8f8194353e50e8135f897d3a18da8f80055a97f0 100644 |
--- a/cc/TiledLayerChromium.cpp |
+++ b/cc/TiledLayerChromium.cpp |
@@ -6,6 +6,7 @@ |
#if USE(ACCELERATED_COMPOSITING) |
+#include "base/basictypes.h" |
#include "TiledLayerChromium.h" |
#include "CCLayerImpl.h" |
@@ -24,7 +25,6 @@ using WebKit::WebTransformationMatrix; |
namespace cc { |
class UpdatableTile : public CCLayerTilingData::Tile { |
- WTF_MAKE_NONCOPYABLE(UpdatableTile); |
public: |
static PassOwnPtr<UpdatableTile> create(PassOwnPtr<LayerTextureUpdater::Texture> texture) |
{ |
@@ -75,6 +75,8 @@ private: |
} |
OwnPtr<LayerTextureUpdater::Texture> m_texture; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(UpdatableTile); |
}; |
TiledLayerChromium::TiledLayerChromium() |