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 eede89efcb2802d874c0f1f22a7a5c524d4c4f49..eb0a3383bf7531926e245880a104d056fa1d4c98 100644 |
--- a/third_party/WebKit/Source/core/geometry/DOMMatrix.h |
+++ b/third_party/WebKit/Source/core/geometry/DOMMatrix.h |
@@ -6,7 +6,6 @@ |
#define DOMMatrix_h |
#include "bindings/core/v8/ExceptionState.h" |
-#include "core/dom/NotShared.h" |
#include "core/geometry/DOMMatrixInit.h" |
#include "core/geometry/DOMMatrixReadOnly.h" |
@@ -22,10 +21,8 @@ |
static DOMMatrix* Create(const SkMatrix44&, ExceptionState&); |
static DOMMatrix* Create(const String&, ExceptionState&); |
static DOMMatrix* Create(Vector<double>, ExceptionState&); |
- static DOMMatrix* fromFloat32Array(NotShared<DOMFloat32Array>, |
- ExceptionState&); |
- static DOMMatrix* fromFloat64Array(NotShared<DOMFloat64Array>, |
- ExceptionState&); |
+ static DOMMatrix* fromFloat32Array(DOMFloat32Array*, ExceptionState&); |
+ static DOMMatrix* fromFloat64Array(DOMFloat64Array*, ExceptionState&); |
static DOMMatrix* fromMatrix(DOMMatrixInit&, ExceptionState&); |
void setA(double value) { matrix_->SetM11(value); } |