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

Unified Diff: cc/CCRenderer.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/CCRenderSurface.h ('k') | cc/CCRendererGL.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/CCRenderer.h
diff --git a/cc/CCRenderer.h b/cc/CCRenderer.h
index 78a60819794b2f6e76280c429eecea4fa6e13aa4..740ba0b293e7588b133829a21fd2f7feef445a2f 100644
--- a/cc/CCRenderer.h
+++ b/cc/CCRenderer.h
@@ -5,11 +5,11 @@
#ifndef CCRenderer_h
#define CCRenderer_h
+#include "base/basictypes.h"
#include "CCLayerTreeHost.h"
#include "CCRenderPass.h"
#include "FloatQuad.h"
#include "IntRect.h"
-#include <wtf/Noncopyable.h>
#include <wtf/PassRefPtr.h>
namespace cc {
@@ -30,7 +30,6 @@ protected:
};
class CCRenderer {
- WTF_MAKE_NONCOPYABLE(CCRenderer);
public:
// This enum defines the various resource pools for the CCResourceProvider
// where textures get allocated.
@@ -76,6 +75,8 @@ protected:
}
CCRendererClient* m_client;
+
+ DISALLOW_COPY_AND_ASSIGN(CCRenderer);
};
}
« no previous file with comments | « cc/CCRenderSurface.h ('k') | cc/CCRendererGL.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698