Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3228)

Unified Diff: cc/CCTiledLayerImpl.cpp

Issue 10985088: cc: Switch it to use DISALLOW_COPY_AND_ASSIGN macro from base/ library. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/CCThread.h ('k') | cc/CCYUVVideoDrawQuad.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « cc/CCThread.h ('k') | cc/CCYUVVideoDrawQuad.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698