| 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 efb275046622c9e61f989823f0d3fbdbce451a46..4b53ca0d4216805205ee6b8dca2efd2f01ab7a3f 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* skewXSelf(double sx = 0);
|
| DOMMatrix* skewYSelf(double sy = 0);
|
| DOMMatrix* invertSelf();
|
|
|