| Index: third_party/WebKit/Source/bindings/core/v8/V8EventListenerInfo.h
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/V8EventListenerInfo.h b/third_party/WebKit/Source/bindings/core/v8/V8EventListenerInfo.h
|
| index c39b7c68d3ee67647218d3607bf1f7774714fd63..4b20e3673a682f294f517fca928c5bb5e4f96aa0 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/V8EventListenerInfo.h
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/V8EventListenerInfo.h
|
| @@ -19,13 +19,15 @@ class V8EventListenerInfo {
|
| bool passive,
|
| bool once,
|
| v8::Local<v8::Object> handler,
|
| - v8::MaybeLocal<v8::Function> removeFunction)
|
| + v8::MaybeLocal<v8::Function> removeFunction,
|
| + int backendNodeId)
|
| : eventType(eventType),
|
| useCapture(useCapture),
|
| passive(passive),
|
| once(once),
|
| handler(handler),
|
| - removeFunction(removeFunction) {}
|
| + removeFunction(removeFunction),
|
| + backendNodeId(backendNodeId) {}
|
|
|
| AtomicString eventType;
|
| bool useCapture;
|
| @@ -33,6 +35,7 @@ class V8EventListenerInfo {
|
| bool once;
|
| v8::Local<v8::Object> handler;
|
| v8::MaybeLocal<v8::Function> removeFunction;
|
| + int backendNodeId;
|
| };
|
|
|
| using V8EventListenerInfoList = Vector<V8EventListenerInfo>;
|
|
|