Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8EventListenerInfo.h

Issue 2687003002: DevTools RDP: add parameters to DOMDebugger.getEventListeners (Closed)
Patch Set: f-e compile Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>;

Powered by Google App Engine
This is Rietveld 408576698