| Index: third_party/WebKit/Source/core/svg/SVGPreserveAspectRatio.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGPreserveAspectRatio.cpp b/third_party/WebKit/Source/core/svg/SVGPreserveAspectRatio.cpp
|
| index 9bed3e6ed4185d658d4c5254380388a4cb55dd35..85007526c898e60f53ba6266e2404fb13ed5e719 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGPreserveAspectRatio.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGPreserveAspectRatio.cpp
|
| @@ -287,12 +287,13 @@ void SVGPreserveAspectRatio::TransformRect(FloatRect& dest_rect,
|
| }
|
| }
|
|
|
| -AffineTransform SVGPreserveAspectRatio::GetCTM(float logical_x,
|
| - float logical_y,
|
| - float logical_width,
|
| - float logical_height,
|
| - float physical_width,
|
| - float physical_height) const {
|
| +AffineTransform SVGPreserveAspectRatio::ComputeTransform(
|
| + float logical_x,
|
| + float logical_y,
|
| + float logical_width,
|
| + float logical_height,
|
| + float physical_width,
|
| + float physical_height) const {
|
| DCHECK(logical_width);
|
| DCHECK(logical_height);
|
| DCHECK(physical_width);
|
|
|