| 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 "core/dom/DOMMatrixInit.h" | 9 #include "core/geometry/DOMMatrixInit.h" |
| 10 #include "core/dom/DOMMatrixReadOnly.h" | 10 #include "core/geometry/DOMMatrixReadOnly.h" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 class CORE_EXPORT DOMMatrix : public DOMMatrixReadOnly { | 14 class CORE_EXPORT DOMMatrix : public DOMMatrixReadOnly { |
| 15 DEFINE_WRAPPERTYPEINFO(); | 15 DEFINE_WRAPPERTYPEINFO(); |
| 16 | 16 |
| 17 public: | 17 public: |
| 18 static DOMMatrix* create(ExceptionState&); | 18 static DOMMatrix* create(ExceptionState&); |
| 19 static DOMMatrix* create(DOMMatrixReadOnly*, | 19 static DOMMatrix* create(DOMMatrixReadOnly*, |
| 20 ExceptionState& = ASSERT_NO_EXCEPTION); | 20 ExceptionState& = ASSERT_NO_EXCEPTION); |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 template <typename T> | 112 template <typename T> |
| 113 DOMMatrix(T sequence, int size); | 113 DOMMatrix(T sequence, int size); |
| 114 | 114 |
| 115 void setIs2D(bool value); | 115 void setIs2D(bool value); |
| 116 void setNAN(); | 116 void setNAN(); |
| 117 }; | 117 }; |
| 118 | 118 |
| 119 } // namespace blink | 119 } // namespace blink |
| 120 | 120 |
| 121 #endif | 121 #endif |
| OLD | NEW |