Index: cc/CCTiledLayerImpl.cpp |
diff --git a/cc/CCTiledLayerImpl.cpp b/cc/CCTiledLayerImpl.cpp |
index 272422bbe8b54d9f70dad7e9d9c13bfea1ced8d5..a0b6192742c498d655fb8ea196d0973505062abd 100644 |
--- a/cc/CCTiledLayerImpl.cpp |
+++ b/cc/CCTiledLayerImpl.cpp |
@@ -8,6 +8,7 @@ |
#include "CCTiledLayerImpl.h" |
+#include "base/basictypes.h" |
#include "base/stringprintf.h" |
#include "CCAppendQuadsData.h" |
#include "CCCheckerboardDrawQuad.h" |
@@ -36,7 +37,6 @@ static const int debugTileBorderMissingTileColorGreen = 0; |
static const int debugTileBorderMissingTileColorBlue = 0; |
class DrawableTile : public CCLayerTilingData::Tile { |
- WTF_MAKE_NONCOPYABLE(DrawableTile); |
public: |
static PassOwnPtr<DrawableTile> create() { return adoptPtr(new DrawableTile()); } |
@@ -47,6 +47,8 @@ private: |
DrawableTile() : m_resourceId(0) { } |
CCResourceProvider::ResourceId m_resourceId; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(DrawableTile); |
}; |
CCTiledLayerImpl::CCTiledLayerImpl(int id) |