| 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 ba5ef3173a4066a31050a7ec73e5488aa6b7f15b..639ade8bf40553052e5ef857f75fa148e8fee5d4 100644
|
| --- a/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h
|
| +++ b/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h
|
| @@ -25,6 +25,7 @@ class CORE_EXPORT DOMMatrixReadOnly
|
| DEFINE_WRAPPERTYPEINFO();
|
|
|
| public:
|
| + static DOMMatrixReadOnly* create(ExceptionState&);
|
| static DOMMatrixReadOnly* create(Vector<double>, ExceptionState&);
|
| static DOMMatrixReadOnly* fromFloat32Array(DOMFloat32Array*, ExceptionState&);
|
| static DOMMatrixReadOnly* fromFloat64Array(DOMFloat64Array*, ExceptionState&);
|
| @@ -100,6 +101,7 @@ class CORE_EXPORT DOMMatrixReadOnly
|
|
|
| protected:
|
| DOMMatrixReadOnly() {}
|
| + DOMMatrixReadOnly(const TransformationMatrix&, bool is2D = true);
|
|
|
| template <typename T>
|
| DOMMatrixReadOnly(T sequence, int size) {
|
|
|