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