+2014-03-03 Andreas Kling <akling@apple.com>
+
+ Remove unused DataView code from JSDOMBinding.h
+ <https://webkit.org/b/129616>
+
+ Reviewed by Antti Koivisto.
+
+ * bindings/js/JSDOMBinding.h:
+
2014-03-03 Simon Fraser <simon.fraser@apple.com>
Allow overflow-scroll to be one-finger scrolled until we hook up UIScrollViews
#include <runtime/JSArray.h>
#include <runtime/JSArrayBuffer.h>
#include <runtime/JSCInlines.h>
-#include <runtime/JSDataView.h>
#include <runtime/JSTypedArrays.h>
#include <runtime/Lookup.h>
#include <runtime/ObjectPrototype.h>
inline PassRefPtr<JSC::Float32Array> toFloat32Array(JSC::JSValue value) { return JSC::toNativeTypedView<JSC::Float32Adaptor>(value); }
inline PassRefPtr<JSC::Float64Array> toFloat64Array(JSC::JSValue value) { return JSC::toNativeTypedView<JSC::Float64Adaptor>(value); }
-inline PassRefPtr<JSC::DataView> toDataView(JSC::JSValue value)
-{
- JSC::JSDataView* wrapper = JSC::jsDynamicCast<JSC::JSDataView*>(value);
- if (!wrapper)
- return 0;
- return wrapper->typedImpl();
-}
-
template<class T> struct NativeValueTraits;
template<>