| Index: Source/bindings/v8/V8Binding.h
|
| diff --git a/Source/bindings/v8/V8Binding.h b/Source/bindings/v8/V8Binding.h
|
| index af429b86d8bbd8f76fab2a920ccea724ba062451..e8e898865024dc5f31fbf2fb9c4d0d1c2eec3a16 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];
|
| }
|
|
|