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

Unified Diff: cc/CCTextureUpdateQueue.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/CCTextureUpdateController.h ('k') | cc/CCThread.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/CCTextureUpdateQueue.h
diff --git a/cc/CCTextureUpdateQueue.h b/cc/CCTextureUpdateQueue.h
index e656489b95dea4c641b1447b8bdd5748be868dbb..4cf29338bb038a336e30ddde67ccafc90435e7f5 100644
--- a/cc/CCTextureUpdateQueue.h
+++ b/cc/CCTextureUpdateQueue.h
@@ -5,15 +5,14 @@
#ifndef CCTextureUpdateQueue_h
#define CCTextureUpdateQueue_h
+#include "base/basictypes.h"
#include "TextureCopier.h"
#include "TextureUploader.h"
#include <wtf/Deque.h>
-#include <wtf/Noncopyable.h>
namespace cc {
class CCTextureUpdateQueue {
- WTF_MAKE_NONCOPYABLE(CCTextureUpdateQueue);
public:
CCTextureUpdateQueue();
virtual ~CCTextureUpdateQueue();
@@ -39,6 +38,8 @@ private:
Deque<TextureUploader::Parameters> m_fullEntries;
Deque<TextureUploader::Parameters> m_partialEntries;
Deque<TextureCopier::Parameters> m_copyEntries;
+
+ DISALLOW_COPY_AND_ASSIGN(CCTextureUpdateQueue);
};
}
« no previous file with comments | « cc/CCTextureUpdateController.h ('k') | cc/CCThread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698