| Index: third_party/WebKit/Source/core/geometry/DOMMatrix.h
|
| diff --git a/third_party/WebKit/Source/core/geometry/DOMMatrix.h b/third_party/WebKit/Source/core/geometry/DOMMatrix.h
|
| index 4254e947fd408bca52a7893f05289eab4b05a6ee..fdc2432b8d5238ce8c1bbd1e2708912315bd2f8c 100644
|
| --- a/third_party/WebKit/Source/core/geometry/DOMMatrix.h
|
| +++ b/third_party/WebKit/Source/core/geometry/DOMMatrix.h
|
| @@ -17,6 +17,7 @@ class CORE_EXPORT DOMMatrix : public DOMMatrixReadOnly {
|
| DEFINE_WRAPPERTYPEINFO();
|
|
|
| public:
|
| + static DOMMatrix* Create();
|
| static DOMMatrix* Create(ExecutionContext*, ExceptionState&);
|
| static DOMMatrix* Create(ExecutionContext*,
|
| StringOrUnrestrictedDoubleSequence&,
|
| @@ -87,6 +88,7 @@ class CORE_EXPORT DOMMatrix : public DOMMatrixReadOnly {
|
| }
|
|
|
| DOMMatrix* multiplySelf(DOMMatrixInit&, ExceptionState&);
|
| + DOMMatrix* multiplySelf(DOMMatrix* other_matrix);
|
| DOMMatrix* preMultiplySelf(DOMMatrixInit&, ExceptionState&);
|
| DOMMatrix* translateSelf(double tx = 0, double ty = 0, double tz = 0);
|
| DOMMatrix* scaleSelf(double sx = 1);
|
|
|