Index: cc/CCDebugRectHistory.h |
diff --git a/cc/CCDebugRectHistory.h b/cc/CCDebugRectHistory.h |
index 6046fb3a4711a90a4a0f227a37c8b36413225527..26680012ff431db141f414c3cb4577031419f619 100644 |
--- a/cc/CCDebugRectHistory.h |
+++ b/cc/CCDebugRectHistory.h |
@@ -7,9 +7,9 @@ |
#if USE(ACCELERATED_COMPOSITING) |
+#include "base/basictypes.h" |
#include "FloatRect.h" |
#include "IntRect.h" |
-#include <wtf/Noncopyable.h> |
#include <wtf/PassOwnPtr.h> |
#include <wtf/Vector.h> |
@@ -52,7 +52,6 @@ struct CCDebugRect { |
// for debugging purposes. The overhead of collecting rects is performed only if |
// the appropriate CCLayerTreeSettings are enabled. |
class CCDebugRectHistory { |
- WTF_MAKE_NONCOPYABLE(CCDebugRectHistory); |
public: |
static PassOwnPtr<CCDebugRectHistory> create() |
{ |
@@ -76,6 +75,8 @@ private: |
void saveOccludingRects(const Vector<IntRect>& occludingScreenSpaceRects); |
Vector<CCDebugRect> m_debugRects; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(CCDebugRectHistory); |
}; |
} // namespace cc |