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

Unified Diff: cc/CCRenderPassDrawQuad.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/CCRenderPass.h ('k') | cc/CCRenderSurface.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/CCRenderPassDrawQuad.h
diff --git a/cc/CCRenderPassDrawQuad.h b/cc/CCRenderPassDrawQuad.h
index 67088925d7edcc1d8a3d178ffab7cf03efc71bc7..99222d9edb83c4bcedca424f85fe43ad40f4a275 100644
--- a/cc/CCRenderPassDrawQuad.h
+++ b/cc/CCRenderPassDrawQuad.h
@@ -5,16 +5,16 @@
#ifndef CCRenderPassDrawQuad_h
#define CCRenderPassDrawQuad_h
+#include "base/basictypes.h"
+#include "base/memory/scoped_ptr.h"
#include "CCDrawQuad.h"
#include "CCRenderPass.h"
#include "CCResourceProvider.h"
#include "IntRect.h"
-#include "base/memory/scoped_ptr.h"
namespace cc {
class CCRenderPassDrawQuad : public CCDrawQuad {
- WTF_MAKE_NONCOPYABLE(CCRenderPassDrawQuad);
public:
static scoped_ptr<CCRenderPassDrawQuad> create(const CCSharedQuadState*, const IntRect&, CCRenderPass::Id renderPassId, bool isReplica, CCResourceProvider::ResourceId maskResourceId, const IntRect& contentsChangedSinceLastFrame, float maskTexCoordScaleX, float maskTexCoordScaleY, float maskTexCoordOffsetX, float maskTexCoordOffsetY);
@@ -42,6 +42,8 @@ private:
float m_maskTexCoordScaleY;
float m_maskTexCoordOffsetX;
float m_maskTexCoordOffsetY;
+
+ DISALLOW_COPY_AND_ASSIGN(CCRenderPassDrawQuad);
};
}
« no previous file with comments | « cc/CCRenderPass.h ('k') | cc/CCRenderSurface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698