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

Unified Diff: third_party/WebKit/Source/core/svg/SVGPreserveAspectRatio.cpp

Issue 2856863005: Rename SVGPreserveAspectRatio::GetCTM to ComputeTransform (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGPreserveAspectRatio.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGPreserveAspectRatio.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698