Index: cc/animation/transform_operations.cc |
diff --git a/cc/animation/transform_operations.cc b/cc/animation/transform_operations.cc |
index 55a23abec68d9fa3291e9fc92229da5008e16ffe..1aa616975b10dae092a494301a53591783ced3c5 100644 |
--- a/cc/animation/transform_operations.cc |
+++ b/cc/animation/transform_operations.cc |
@@ -84,17 +84,6 @@ bool TransformOperations::BlendedBoundsForBox(const gfx::BoxF& box, |
return true; |
} |
-bool TransformOperations::AffectsScale() const { |
- for (size_t i = 0; i < operations_.size(); ++i) { |
- if (operations_[i].type == TransformOperation::TRANSFORM_OPERATION_SCALE) |
- return true; |
- if (operations_[i].type == TransformOperation::TRANSFORM_OPERATION_MATRIX && |
- !operations_[i].matrix.IsIdentityOrTranslation()) |
- return true; |
- } |
- return false; |
-} |
- |
bool TransformOperations::PreservesAxisAlignment() const { |
for (size_t i = 0; i < operations_.size(); ++i) { |
switch (operations_[i].type) { |