| 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,
|
|
|