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

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

Issue 2387003002: [GeometryInterface] remove scaleNonUniform* method. (Closed)
Patch Set: rebase origin 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 ecd733866dc6803b9cf0d8c193603362cf15ac03..782d3ae00430e766a06e886104a84b6cc5a7fa0e 100644
--- a/third_party/WebKit/Source/core/dom/DOMMatrix.h
+++ b/third_party/WebKit/Source/core/dom/DOMMatrix.h
@@ -81,17 +81,17 @@ class CORE_EXPORT DOMMatrix : public DOMMatrixReadOnly {
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* 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* scaleNonUniformSelf(double sx,
- double sy = 1,
- double sz = 1,
- double ox = 0,
- double oy = 0,
- double oz = 0);
DOMMatrix* rotateAxisAngleSelf(double x = 0,
double y = 0,
double z = 0,

Powered by Google App Engine
This is Rietveld 408576698