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

Unified Diff: cc/CCLayerSorter.h

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/CCLayerAnimationController.h ('k') | cc/CCLayerTilingData.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/CCLayerSorter.h
diff --git a/cc/CCLayerSorter.h b/cc/CCLayerSorter.h
index 1ef659b51696a5e1b2d5e74d3b2284393b6a4465..4402851c1f2341ad5a161992a09afc23760738dd 100644
--- a/cc/CCLayerSorter.h
+++ b/cc/CCLayerSorter.h
@@ -5,12 +5,12 @@
#ifndef CCLayerSorter_h
#define CCLayerSorter_h
+#include "base/basictypes.h"
#include "CCLayerImpl.h"
#include "FloatPoint3D.h"
#include "FloatQuad.h"
#include "FloatRect.h"
#include <wtf/HashMap.h>
-#include <wtf/Noncopyable.h>
#include <wtf/Vector.h>
namespace WebKit {
@@ -20,7 +20,6 @@ class WebTransformationMatrix;
namespace cc {
class CCLayerSorter {
- WTF_MAKE_NONCOPYABLE(CCLayerSorter);
public:
CCLayerSorter();
~CCLayerSorter();
@@ -84,6 +83,8 @@ private:
void createGraphNodes(LayerList::iterator first, LayerList::iterator last);
void createGraphEdges();
void removeEdgeFromList(GraphEdge*, Vector<GraphEdge*>&);
+
+ DISALLOW_COPY_AND_ASSIGN(CCLayerSorter);
};
}
« no previous file with comments | « cc/CCLayerAnimationController.h ('k') | cc/CCLayerTilingData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698