| 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 59bca50017db2e9bf1734e5360908b77e91d7530..77a0c68071fe6aa3d9d2cf61f0b5da1c24f91974 100644
|
| --- a/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h
|
| +++ b/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h
|
| @@ -58,14 +58,14 @@ class CORE_EXPORT DOMMatrixReadOnly
|
|
|
| DOMMatrix* multiply(DOMMatrixInit&, ExceptionState&);
|
| DOMMatrix* translate(double tx, double ty, double tz = 0);
|
| - DOMMatrix* scale(double scale, double ox = 0, double oy = 0);
|
| + 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* scaleNonUniform(double sx,
|
| - double sy = 1,
|
| - double sz = 1,
|
| - double ox = 0,
|
| - double oy = 0,
|
| - double oz = 0);
|
| DOMMatrix* rotateAxisAngle(double x = 0,
|
| double y = 0,
|
| double z = 0,
|
|
|