Index: cc/animation/transform_operations.cc |
diff --git a/cc/animation/transform_operations.cc b/cc/animation/transform_operations.cc |
index 8826d297a497c9a9eaad148201bffc58d735e3d2..d74f1a5343ac3742f2237db31bef3b7101b3735c 100644 |
--- a/cc/animation/transform_operations.cc |
+++ b/cc/animation/transform_operations.cc |
@@ -164,16 +164,6 @@ bool TransformOperations::BlendInternal(const TransformOperations& from, |
return true; |
} |
- if (progress <= 0.0) { |
- *result = from.Apply(); |
- return true; |
- } |
- |
- if (progress >= 1.0) { |
- *result = Apply(); |
- return true; |
- } |
- |
if (!ComputeDecomposedTransform() || !from.ComputeDecomposedTransform()) |
return false; |