| 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/NotShared.h" | 9 #include "core/dom/ArrayBufferViewHelpers.h" |
| 10 #include "core/geometry/DOMMatrixInit.h" | 10 #include "core/geometry/DOMMatrixInit.h" |
| 11 #include "core/geometry/DOMMatrixReadOnly.h" | 11 #include "core/geometry/DOMMatrixReadOnly.h" |
| 12 | 12 |
| 13 namespace blink { | 13 namespace blink { |
| 14 | 14 |
| 15 class CORE_EXPORT DOMMatrix : public DOMMatrixReadOnly { | 15 class CORE_EXPORT DOMMatrix : public DOMMatrixReadOnly { |
| 16 DEFINE_WRAPPERTYPEINFO(); | 16 DEFINE_WRAPPERTYPEINFO(); |
| 17 | 17 |
| 18 public: | 18 public: |
| 19 static DOMMatrix* Create(ExceptionState&); | 19 static DOMMatrix* Create(ExceptionState&); |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 template <typename T> | 115 template <typename T> |
| 116 DOMMatrix(T sequence, int size); | 116 DOMMatrix(T sequence, int size); |
| 117 | 117 |
| 118 void SetIs2D(bool value); | 118 void SetIs2D(bool value); |
| 119 void SetNAN(); | 119 void SetNAN(); |
| 120 }; | 120 }; |
| 121 | 121 |
| 122 } // namespace blink | 122 } // namespace blink |
| 123 | 123 |
| 124 #endif | 124 #endif |
| OLD | NEW |