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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorDOMAgent.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/core/inspector/InspectorDOMAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorDOMAgent.h b/third_party/WebKit/Source/core/inspector/InspectorDOMAgent.h
index e5f9cbc50a7e075a3581dc2b14904be27a2181a0..0b021280684904f2404229af199c3b3f13b1c335 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorDOMAgent.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorDOMAgent.h
@@ -264,6 +264,12 @@ class CORE_EXPORT InspectorDOMAgent final
static unsigned innerChildNodeCount(Node*);
static Node* innerParentNode(Node*);
static bool isWhitespace(Node*);
+ static v8::Local<v8::Value> nodeV8Value(v8::Local<v8::Context>, Node*);
+ static void collectNodes(Node* root,
+ int depth,
+ bool pierce,
+ Function<bool(Node*)>*,
+ HeapVector<Member<Node>>* result);
Response assertNode(int nodeId, Node*&);
Response assertElement(int nodeId, Element*&);

Powered by Google App Engine
This is Rietveld 408576698