| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef DOMMatrix_h | 5 #ifndef DOMMatrix_h |
| 6 #define DOMMatrix_h | 6 #define DOMMatrix_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ExceptionState.h" | 8 #include "bindings/core/v8/ExceptionState.h" |
| 9 #include "bindings/core/v8/StringOrUnrestrictedDoubleSequence.h" |
| 9 #include "core/dom/ArrayBufferViewHelpers.h" | 10 #include "core/dom/ArrayBufferViewHelpers.h" |
| 10 #include "core/geometry/DOMMatrixInit.h" | 11 #include "core/geometry/DOMMatrixInit.h" |
| 11 #include "core/geometry/DOMMatrixReadOnly.h" | 12 #include "core/geometry/DOMMatrixReadOnly.h" |
| 12 | 13 |
| 13 namespace blink { | 14 namespace blink { |
| 14 | 15 |
| 15 class CORE_EXPORT DOMMatrix : public DOMMatrixReadOnly { | 16 class CORE_EXPORT DOMMatrix : public DOMMatrixReadOnly { |
| 16 DEFINE_WRAPPERTYPEINFO(); | 17 DEFINE_WRAPPERTYPEINFO(); |
| 17 | 18 |
| 18 public: | 19 public: |
| 19 static DOMMatrix* Create(ExceptionState&); | 20 static DOMMatrix* Create(ExceptionState&); |
| 21 static DOMMatrix* Create(StringOrUnrestrictedDoubleSequence&, |
| 22 ExceptionState&); |
| 23 // TODO(fserb): double check those two bellow are needed: |
| 20 static DOMMatrix* Create(DOMMatrixReadOnly*, | 24 static DOMMatrix* Create(DOMMatrixReadOnly*, |
| 21 ExceptionState& = ASSERT_NO_EXCEPTION); | 25 ExceptionState& = ASSERT_NO_EXCEPTION); |
| 22 static DOMMatrix* Create(const SkMatrix44&, ExceptionState&); | 26 static DOMMatrix* Create(const SkMatrix44&, ExceptionState&); |
| 23 static DOMMatrix* Create(const String&, ExceptionState&); | |
| 24 static DOMMatrix* Create(Vector<double>, ExceptionState&); | |
| 25 static DOMMatrix* fromFloat32Array(NotShared<DOMFloat32Array>, | 27 static DOMMatrix* fromFloat32Array(NotShared<DOMFloat32Array>, |
| 26 ExceptionState&); | 28 ExceptionState&); |
| 27 static DOMMatrix* fromFloat64Array(NotShared<DOMFloat64Array>, | 29 static DOMMatrix* fromFloat64Array(NotShared<DOMFloat64Array>, |
| 28 ExceptionState&); | 30 ExceptionState&); |
| 29 static DOMMatrix* fromMatrix(DOMMatrixInit&, ExceptionState&); | 31 static DOMMatrix* fromMatrix(DOMMatrixInit&, ExceptionState&); |
| 30 | 32 |
| 31 void setA(double value) { matrix_->SetM11(value); } | 33 void setA(double value) { matrix_->SetM11(value); } |
| 32 void setB(double value) { matrix_->SetM12(value); } | 34 void setB(double value) { matrix_->SetM12(value); } |
| 33 void setC(double value) { matrix_->SetM21(value); } | 35 void setC(double value) { matrix_->SetM21(value); } |
| 34 void setD(double value) { matrix_->SetM22(value); } | 36 void setD(double value) { matrix_->SetM22(value); } |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 template <typename T> | 117 template <typename T> |
| 116 DOMMatrix(T sequence, int size); | 118 DOMMatrix(T sequence, int size); |
| 117 | 119 |
| 118 void SetIs2D(bool value); | 120 void SetIs2D(bool value); |
| 119 void SetNAN(); | 121 void SetNAN(); |
| 120 }; | 122 }; |
| 121 | 123 |
| 122 } // namespace blink | 124 } // namespace blink |
| 123 | 125 |
| 124 #endif | 126 #endif |
| OLD | NEW |