| Index: Source/bindings/v8/custom/V8ArrayBufferCustom.cpp
|
| diff --git a/Source/bindings/v8/custom/V8ArrayBufferCustom.cpp b/Source/bindings/v8/custom/V8ArrayBufferCustom.cpp
|
| index 9da2ef914e193637a40fb1c457ddc5b53cc21e9a..9c5a95942d6fcef2077e09475e5c0ebaed49b1ac 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"
|
| @@ -98,4 +99,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
|
|
|