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

Unified Diff: cc/keyframed_animation_curve.cc

Issue 11308153: Migrate most of cc/ from WebKit::WebTransformationMatrix to gfx::Transform (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased to tip of tree and addressed feedback Created 8 years, 1 month 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
Index: cc/keyframed_animation_curve.cc
diff --git a/cc/keyframed_animation_curve.cc b/cc/keyframed_animation_curve.cc
index 9cf0ef37e14343565988e9e3a755d7e82453c2b7..c81dde16d60f8c4e310633dbaca92e3df9ca29c3 100644
--- a/cc/keyframed_animation_curve.cc
+++ b/cc/keyframed_animation_curve.cc
@@ -4,7 +4,7 @@
#include "cc/keyframed_animation_curve.h"
-using WebKit::WebTransformationMatrix;
+using gfx::Transform;
danakj 2012/11/24 02:34:54 erase this line, or undo both changes in this file
namespace cc {
@@ -196,7 +196,7 @@ scoped_ptr<AnimationCurve> KeyframedTransformAnimationCurve::clone() const
return toReturn.PassAs<AnimationCurve>();
}
-WebTransformationMatrix KeyframedTransformAnimationCurve::getValue(double t) const
+WebKit::WebTransformationMatrix KeyframedTransformAnimationCurve::getValue(double t) const
{
if (t <= m_keyframes.first()->time())
return m_keyframes.first()->value().apply();

Powered by Google App Engine
This is Rietveld 408576698