| Index: Source/bindings/v8/V8Binding.h
|
| diff --git a/Source/bindings/v8/V8Binding.h b/Source/bindings/v8/V8Binding.h
|
| index 1a06778ac225ed9383ccf146ca8b869231a93415..3539c7090c9404717c48b9de10396d773de20892 100644
|
| --- a/Source/bindings/v8/V8Binding.h
|
| +++ b/Source/bindings/v8/V8Binding.h
|
| @@ -70,7 +70,7 @@ namespace WebCore {
|
| // A helper for throwing JavaScript TypeError for not enough arguments.
|
| v8::Handle<v8::Value> throwNotEnoughArgumentsError(v8::Isolate*);
|
|
|
| - inline v8::Handle<v8::Value> argumentOrNull(const v8::Arguments& args, int index)
|
| + inline v8::Handle<v8::Value> argumentOrNull(const v8::FunctionCallbackInfo<v8::Value>& args, int index)
|
| {
|
| return index >= args.Length() ? v8::Local<v8::Value>() : args[index];
|
| }
|
|
|