| Index: cc/playback/draw_image.h
|
| diff --git a/cc/playback/draw_image.h b/cc/playback/draw_image.h
|
| index 3b45781da59b00fafc153a814e9a290fb846af4a..878f88ee23a2fa0da9296280c9b958eac4696078 100644
|
| --- a/cc/playback/draw_image.h
|
| +++ b/cc/playback/draw_image.h
|
| @@ -34,9 +34,9 @@ class CC_EXPORT DrawImage {
|
| bool matrix_is_decomposable() const { return matrix_is_decomposable_; }
|
| const SkMatrix& matrix() const { return matrix_; }
|
|
|
| - DrawImage ApplyScale(const gfx::SizeF& scales) const {
|
| + DrawImage ApplyScale(float scale) const {
|
| SkMatrix scaled_matrix = matrix_;
|
| - scaled_matrix.preScale(scales.width(), scales.height());
|
| + scaled_matrix.preScale(scale, scale);
|
| return DrawImage(image_, src_rect_, filter_quality_, scaled_matrix);
|
| }
|
|
|
|
|