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

Unified Diff: cc/CCLayerAnimationController.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/CCInputHandler.h ('k') | cc/CCLayerSorter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/CCLayerAnimationController.h
diff --git a/cc/CCLayerAnimationController.h b/cc/CCLayerAnimationController.h
index eef4baf7581823f3c907123d516f04652af71a8a..2b6ae64efc3749bd6dd5a8cd9608d2ba0431d118 100644
--- a/cc/CCLayerAnimationController.h
+++ b/cc/CCLayerAnimationController.h
@@ -7,9 +7,9 @@
#include "CCAnimationEvents.h"
+#include "base/basictypes.h"
#include "cc/own_ptr_vector.h"
#include <wtf/HashSet.h>
-#include <wtf/Noncopyable.h>
#include <wtf/OwnPtr.h>
#include <wtf/PassOwnPtr.h>
@@ -35,7 +35,6 @@ public:
};
class CCLayerAnimationController {
- WTF_MAKE_NONCOPYABLE(CCLayerAnimationController);
public:
static PassOwnPtr<CCLayerAnimationController> create(CCLayerAnimationControllerClient*);
@@ -105,6 +104,8 @@ private:
CCLayerAnimationControllerClient* m_client;
OwnPtrVector<CCActiveAnimation> m_activeAnimations;
+
+ DISALLOW_COPY_AND_ASSIGN(CCLayerAnimationController);
};
} // namespace cc
« no previous file with comments | « cc/CCInputHandler.h ('k') | cc/CCLayerSorter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698