| 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*&);
|
|
|