Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(626)

Unified Diff: Source/core/dom/DOMMatrixReadOnly.h

Issue 606653006: bindings: Adds DOMArrayBuffer, etc. as thin wrappers for ArrayBuffer, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/dom/DOMDataView.cpp ('k') | Source/core/dom/DOMMatrixReadOnly.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DOMMatrixReadOnly.h
diff --git a/Source/core/dom/DOMMatrixReadOnly.h b/Source/core/dom/DOMMatrixReadOnly.h
index 5933420f1c6e262678afd65f94691efb44fa6981..6b9002d28ed4ef68e7816d9b868160ef302986d8 100644
--- a/Source/core/dom/DOMMatrixReadOnly.h
+++ b/Source/core/dom/DOMMatrixReadOnly.h
@@ -6,10 +6,9 @@
#define DOMMatrixReadOnly_h
#include "bindings/core/v8/ScriptWrappable.h"
+#include "core/dom/DOMTypedArray.h"
#include "platform/heap/Handle.h"
#include "platform/transforms/TransformationMatrix.h"
-#include "wtf/Float32Array.h"
-#include "wtf/Float64Array.h"
namespace blink {
@@ -51,8 +50,8 @@ public:
DOMMatrix* scaleNonUniform(double sx, double sy = 1, double sz = 1,
double ox = 0, double oy = 0, double oz = 0);
- PassRefPtr<Float32Array> toFloat32Array() const;
- PassRefPtr<Float64Array> toFloat64Array() const;
+ PassRefPtr<DOMFloat32Array> toFloat32Array() const;
+ PassRefPtr<DOMFloat64Array> toFloat64Array() const;
const TransformationMatrix& matrix() const { return m_matrix; }
« no previous file with comments | « Source/core/dom/DOMDataView.cpp ('k') | Source/core/dom/DOMMatrixReadOnly.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698