| Index: Source/bindings/core/v8/V8BindingMacros.h
|
| diff --git a/Source/bindings/core/v8/V8BindingMacros.h b/Source/bindings/core/v8/V8BindingMacros.h
|
| index 8c31f8ec5919a120a8d46a83e2e540a7c9b260f9..decc724286062f5a99c90f42bf12b521549633cf 100644
|
| --- a/Source/bindings/core/v8/V8BindingMacros.h
|
| +++ b/Source/bindings/core/v8/V8BindingMacros.h
|
| @@ -99,6 +99,11 @@ namespace blink {
|
| if (UNLIKELY(exceptionState.throwIfNeeded())) \
|
| return;
|
|
|
| +#define TONATIVE_VOID_EXCEPTIONSTATE_ARGINTERNAL(value, exceptionState) \
|
| + (value); \
|
| + if (UNLIKELY(exceptionState.throwIfNeeded())) \
|
| + return;
|
| +
|
| #define TONATIVE_DEFAULT_EXCEPTIONSTATE(type, var, value, exceptionState, retVal) \
|
| type var = (value); \
|
| if (UNLIKELY(exceptionState.throwIfNeeded())) \
|
|
|