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

Unified Diff: webkit/compositor_bindings/web_transform_animation_curve_impl.cc

Issue 12629006: Prepare for removing WebTransformationMatrix from animation APIs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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
Index: webkit/compositor_bindings/web_transform_animation_curve_impl.cc
diff --git a/webkit/compositor_bindings/web_transform_animation_curve_impl.cc b/webkit/compositor_bindings/web_transform_animation_curve_impl.cc
index f15435cc0da42b60152a29792e1a9c2d9c93681b..ef637596511bd0972dd3c25f5ab85d7a2821db50 100644
--- a/webkit/compositor_bindings/web_transform_animation_curve_impl.cc
+++ b/webkit/compositor_bindings/web_transform_animation_curve_impl.cc
@@ -53,8 +53,7 @@ void WebTransformAnimationCurveImpl::add(const WebTransformKeyframe& keyframe,
WebTransformationMatrix WebTransformAnimationCurveImpl::getValue(
double time) const {
- return webkit::WebTransformationMatrixUtil::ToWebTransformationMatrix(
- curve_->getValue(time));
+ return WebTransformationMatrix();
jamesr 2013/03/07 23:33:15 Nobody calls getValue(), but it's defined as pure
}
scoped_ptr<cc::AnimationCurve>

Powered by Google App Engine
This is Rietveld 408576698