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

Unified Diff: third_party/WebKit/Source/core/dom/DOMMatrix.h

Issue 2387003002: [GeometryInterface] remove scaleNonUniform* method. (Closed)
Patch Set: [GeometryInterface] remove scaleNonUniform* method. Created 4 years, 2 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
Index: third_party/WebKit/Source/core/dom/DOMMatrix.h
diff --git a/third_party/WebKit/Source/core/dom/DOMMatrix.h b/third_party/WebKit/Source/core/dom/DOMMatrix.h
index e9608816dde1a0d6eb17a191f3510a4f5934af5d..b76803c0a8b50247a54b6560974fc422669b946e 100644
--- a/third_party/WebKit/Source/core/dom/DOMMatrix.h
+++ b/third_party/WebKit/Source/core/dom/DOMMatrix.h
@@ -49,10 +49,10 @@ public:
DOMMatrix* multiplySelf(DOMMatrixInit&, ExceptionState&);
DOMMatrix* preMultiplySelf(DOMMatrixInit&, ExceptionState&);
DOMMatrix* translateSelf(double tx, double ty, double tz = 0);
- DOMMatrix* scaleSelf(double scale, double ox = 0, double oy = 0);
- DOMMatrix* scale3dSelf(double scale, double ox = 0, double oy = 0, double oz = 0);
- DOMMatrix* scaleNonUniformSelf(double sx, double sy = 1, double sz = 1,
+ DOMMatrix* scaleSelf(double sx = 1);
+ DOMMatrix* scaleSelf(double sx, double sy, double sz = 1,
double ox = 0, double oy = 0, double oz = 0);
+ DOMMatrix* scale3dSelf(double scale, double ox = 0, double oy = 0, double oz = 0);
DOMMatrix* skewXSelf(double sx = 0);
DOMMatrix* skewYSelf(double sy = 0);
DOMMatrix* invertSelf();

Powered by Google App Engine
This is Rietveld 408576698