| Index: third_party/WebKit/Source/bindings/core/v8/V8BindingMacros.h
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/V8BindingMacros.h b/third_party/WebKit/Source/bindings/core/v8/V8BindingMacros.h
|
| index 22c6332449fd305b41286db0a845eb81bf17215a..f89307a1f429dee1302dde68ee839f819f4c3f3a 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/V8BindingMacros.h
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/V8BindingMacros.h
|
| @@ -91,13 +91,6 @@ inline bool v8Call(v8::MaybeLocal<T> maybeLocal, v8::Local<T>& outVariable, v8::
|
| return success;
|
| }
|
|
|
| -#define V8_CALL(outVariable, handle, methodCall, failureExpression) \
|
| - do { \
|
| - if (handle.IsEmpty() || !v8Call(handle->methodCall, outVariable)) { \
|
| - failureExpression; \
|
| - } \
|
| - } while (0)
|
| -
|
| } // namespace blink
|
|
|
| #endif // V8BindingMacros_h
|
|
|