#ifndef V8Int8ArrayCustom_h
#define V8Int8ArrayCustom_h
#include "bindings/v8/custom/V8TypedArrayCustom.h"
#include "wtf/Int8Array.h"
namespace WebCore {
template<>
class TypedArrayTraits<Int8Array> {
public:
typedef v8::Int8Array V8Type;
static bool IsInstance(v8::Handle<v8::Value> value)
{
return value->IsInt8Array();
}
static size_t length(v8::Handle<v8::Int8Array> value)
{
return value->Length();
}
static size_t length(Int8Array* array)
{
return array->length();
}
};
typedef V8TypedArray<Int8Array> V8Int8Array;
inline v8::Handle<v8::Object> wrap(Int8Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
{
return V8TypedArray<Int8Array>::wrap(impl, creationContext, isolate);
}
inline v8::Handle<v8::Value> toV8(Int8Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
{
return V8TypedArray<Int8Array>::toV8(impl, creationContext, isolate);
}
template<class CallbackInfo>
inline void v8SetReturnValue(const CallbackInfo& info, Int8Array* impl)
{
V8TypedArray<Int8Array>::v8SetReturnValue(info, impl);
}
template<class CallbackInfo>
inline void v8SetReturnValueForMainWorld(const CallbackInfo& info, Int8Array* impl)
{
V8TypedArray<Int8Array>::v8SetReturnValueForMainWorld(info, impl);
}
template<class CallbackInfo, class Wrappable>
inline void v8SetReturnValueFast(const CallbackInfo& info, Int8Array* impl, Wrappable* wrappable)
{
V8TypedArray<Int8Array>::v8SetReturnValueFast(info, impl, wrappable);
}
inline v8::Handle<v8::Value> toV8(PassRefPtr< Int8Array > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
{
return toV8(impl.get(), creationContext, isolate);
}
template<class CallbackInfo>
inline void v8SetReturnValue(const CallbackInfo& info, PassRefPtr<Int8Array> impl)
{
v8SetReturnValue(info, impl.get());
}
template<class CallbackInfo>
inline void v8SetReturnValueForMainWorld(const CallbackInfo& info, PassRefPtr<Int8Array> impl)
{
v8SetReturnValueForMainWorld(info, impl.get());
}
template<class CallbackInfo, class Wrappable>
inline void v8SetReturnValueFast(const CallbackInfo& info, PassRefPtr<Int8Array> impl, Wrappable* wrappable)
{
v8SetReturnValueFast(info, impl.get(), wrappable);
}
}
#endif