| Index: Source/bindings/core/v8/V8Binding.h
|
| diff --git a/Source/bindings/core/v8/V8Binding.h b/Source/bindings/core/v8/V8Binding.h
|
| index 85e00e7f7168f1828da6ffee620909dc336a6e25..e0559eb62371a91b6f8a53741fb07b7e51a262fd 100644
|
| --- a/Source/bindings/core/v8/V8Binding.h
|
| +++ b/Source/bindings/core/v8/V8Binding.h
|
| @@ -66,9 +66,9 @@ const int kMaxRecursionDepth = 22;
|
|
|
| // Helpers for throwing JavaScript TypeErrors for arity mismatches.
|
| void setArityTypeError(ExceptionState&, const char* valid, unsigned provided);
|
| -v8::Local<v8::Value> createMinimumArityTypeErrorForMethod(const char* method, const char* type, unsigned expected, unsigned providedLeastNumMandatoryParams, v8::Isolate*);
|
| -v8::Local<v8::Value> createMinimumArityTypeErrorForConstructor(const char* type, unsigned expected, unsigned providedLeastNumMandatoryParams, v8::Isolate*);
|
| -void setMinimumArityTypeError(ExceptionState&, unsigned expected, unsigned providedLeastNumMandatoryParams);
|
| +v8::Local<v8::Value> createMinimumArityTypeErrorForMethod(const char* method, const char* type, unsigned expected, unsigned provided, v8::Isolate*);
|
| +v8::Local<v8::Value> createMinimumArityTypeErrorForConstructor(const char* type, unsigned expected, unsigned provided, v8::Isolate*);
|
| +void setMinimumArityTypeError(ExceptionState&, unsigned expected, unsigned provided);
|
|
|
| v8::ArrayBuffer::Allocator* v8ArrayBufferAllocator();
|
|
|
|
|