| Index: Source/bindings/v8/custom/V8ArrayBufferCustom.cpp
|
| diff --git a/Source/bindings/v8/custom/V8ArrayBufferCustom.cpp b/Source/bindings/v8/custom/V8ArrayBufferCustom.cpp
|
| index 8107736449df6e602756e808d574a8d390374458..25d8e7dbd2c6097fe916b3a26b397935d574ed26 100644
|
| --- a/Source/bindings/v8/custom/V8ArrayBufferCustom.cpp
|
| +++ b/Source/bindings/v8/custom/V8ArrayBufferCustom.cpp
|
| @@ -31,6 +31,7 @@
|
| #include "config.h"
|
| #include "bindings/v8/custom/V8ArrayBufferCustom.h"
|
|
|
| +#include "bindings/v8/ScriptPromiseResolver.h"
|
| #include "bindings/v8/V8Binding.h"
|
| #include "wtf/ArrayBuffer.h"
|
| #include "wtf/StdLibExtras.h"
|
| @@ -99,4 +100,10 @@ ArrayBuffer* V8ArrayBuffer::toNative(v8::Handle<v8::Object> object)
|
| return reinterpret_cast<ArrayBuffer*>(arraybufferPtr);
|
| }
|
|
|
| +template<>
|
| +v8::Handle<v8::Value> toV8NoInline(ArrayBuffer* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
|
| +{
|
| + return toV8(impl, creationContext, isolate);
|
| +}
|
| +
|
| } // namespace WebCore
|
|
|