Index: Source/core/html/canvas/DataView.cpp |
diff --git a/Source/core/html/canvas/DataView.cpp b/Source/core/html/canvas/DataView.cpp |
index 8ce7fcc3f3688c71640f3f1cb106dd151f6072b2..1a6d8b21419950927a49a9b24fe21eeaf417486a 100644 |
--- a/Source/core/html/canvas/DataView.cpp |
+++ b/Source/core/html/canvas/DataView.cpp |
@@ -27,8 +27,6 @@ |
#include "core/html/canvas/DataView.h" |
#include "bindings/core/v8/ExceptionState.h" |
-#include "bindings/core/v8/custom/V8DataViewCustom.h" |
-#include "bindings/core/v8/custom/V8TypedArrayCustom.h" |
#include "core/dom/ExceptionCode.h" |
#include "platform/CheckedInt.h" |
#include "wtf/CPU.h" |
@@ -240,11 +238,6 @@ void DataView::setFloat64(unsigned byteOffset, double value, bool littleEndian, |
setData<double>(byteOffset, value, littleEndian, exceptionState); |
} |
-v8::Handle<v8::Object> DataView::wrap(v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) |
-{ |
- return V8TypedArray<DataView>::wrap(this, creationContext, isolate); |
-} |
- |
void DataView::neuter() |
{ |
ArrayBufferView::neuter(); |