| Index: Source/bindings/v8/V8Binding.h
|
| diff --git a/Source/bindings/v8/V8Binding.h b/Source/bindings/v8/V8Binding.h
|
| index fabf358f47dffc22efec18c3542c31523343cb76..f73f30c4ebaf0753eff2008062ae2830c1bfc2f0 100644
|
| --- a/Source/bindings/v8/V8Binding.h
|
| +++ b/Source/bindings/v8/V8Binding.h
|
| @@ -86,11 +86,6 @@ bool invokeCallback(ScriptState*, v8::Local<v8::Function> callback, v8::Handle<v
|
|
|
| v8::ArrayBuffer::Allocator* v8ArrayBufferAllocator();
|
|
|
| -inline v8::Handle<v8::Value> argumentOrNull(const v8::FunctionCallbackInfo<v8::Value>& info, int index)
|
| -{
|
| - return index >= info.Length() ? v8::Local<v8::Value>() : info[index];
|
| -}
|
| -
|
| template<typename CallbackInfo, typename V>
|
| inline void v8SetReturnValue(const CallbackInfo& info, V v)
|
| {
|
|
|