| 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 3376c2efd9162f39197ad82d59649a532abc0969..ad5bf1f3fb28340bae2427d8a6bf17d09539fa94 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorDOMAgent.h
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorDOMAgent.h
|
| @@ -124,10 +124,6 @@ class CORE_EXPORT InspectorDOMAgent final
|
| const Maybe<int>& depth,
|
| const Maybe<bool>& traverseFrames,
|
| std::unique_ptr<protocol::DOM::Node>* root) override;
|
| - void getLayoutTreeNodes(
|
| - ErrorString*,
|
| - std::unique_ptr<protocol::Array<protocol::DOM::LayoutTreeNode>>*
|
| - layoutTreeNodes) override;
|
| void collectClassNamesFromSubtree(
|
| ErrorString*,
|
| int nodeId,
|
| @@ -301,6 +297,7 @@ class CORE_EXPORT InspectorDOMAgent final
|
| Node* assertNode(ErrorString*, int nodeId);
|
| Element* assertElement(ErrorString*, int nodeId);
|
| Document* assertDocument(ErrorString*, int nodeId);
|
| + Document* document() const { return m_document.get(); }
|
|
|
| private:
|
| void setDocument(Document*);
|
| @@ -362,9 +359,6 @@ class CORE_EXPORT InspectorDOMAgent final
|
|
|
| Member<InspectorRevalidateDOMTask> revalidateTask();
|
|
|
| - void visitLayoutTreeNodes(Node*,
|
| - protocol::Array<protocol::DOM::LayoutTreeNode>&);
|
| -
|
| v8::Isolate* m_isolate;
|
| Member<InspectedFrames> m_inspectedFrames;
|
| v8_inspector::V8InspectorSession* m_v8Session;
|
|
|