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

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

Issue 2387003002: [GeometryInterface] remove scaleNonUniform* method. (Closed)
Patch Set: add test. 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/DOMMatrixReadOnly.h
diff --git a/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h b/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h
index 03512f0ca140443739c26b909cc1ad5fa7f181c0..d8f0b72e7959d5e31fb29e8bbf5e43cb9fd08b2c 100644
--- a/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h
+++ b/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h
@@ -55,10 +55,10 @@ public:
DOMMatrix* multiply(DOMMatrixInit&, ExceptionState&);
DOMMatrix* translate(double tx, double ty, double tz = 0);
- DOMMatrix* scale(double scale, double ox = 0, double oy = 0);
- DOMMatrix* scale3d(double scale, double ox = 0, double oy = 0, double oz = 0);
- DOMMatrix* scaleNonUniform(double sx, double sy = 1, double sz = 1,
+ DOMMatrix* scale(double sx = 1);
+ DOMMatrix* scale(double sx, double sy, double sz = 1,
double ox = 0, double oy = 0, double oz = 0);
+ DOMMatrix* scale3d(double scale, double ox = 0, double oy = 0, double oz = 0);
DOMMatrix* skewX(double sx);
DOMMatrix* skewY(double sy);
DOMMatrix* flipX();

Powered by Google App Engine
This is Rietveld 408576698