| 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 c63802515cc07545e18a1bbfeb6f5d2b11ed0548..fb361d7f13117fca4b3ace9876b158e746122d4b 100644
|
| --- a/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h
|
| +++ b/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h
|
| @@ -55,6 +55,11 @@ public:
|
| 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* rotate(double rotX);
|
| + DOMMatrix* rotate(double rotX, double rotY);
|
| + DOMMatrix* rotate(double rotX, double rotY, double rotZ);
|
| + DOMMatrix* rotateFromVector(double x, double y);
|
| + DOMMatrix* rotateAxisAngle(double x, double y, double z, double angle);
|
| DOMMatrix* flipX();
|
| DOMMatrix* flipY();
|
|
|
|
|