| Index: Source/core/inspector/InspectorDOMAgent.h
|
| diff --git a/Source/core/inspector/InspectorDOMAgent.h b/Source/core/inspector/InspectorDOMAgent.h
|
| index 65959c189a223ee448d3d779ecd82ecd10780a77..19bfdcb45c5f688c24c66e9cf9798481205ae46f 100644
|
| --- a/Source/core/inspector/InspectorDOMAgent.h
|
| +++ b/Source/core/inspector/InspectorDOMAgent.h
|
| @@ -112,6 +112,8 @@ public:
|
| void reset();
|
|
|
| // Methods called from the frontend for DOM nodes inspection.
|
| + virtual void enable(ErrorString*) OVERRIDE;
|
| + virtual void disable(ErrorString*) OVERRIDE;
|
| virtual void querySelector(ErrorString*, int nodeId, const String& selectors, int* elementId) OVERRIDE;
|
| virtual void querySelectorAll(ErrorString*, int nodeId, const String& selectors, RefPtr<TypeBuilder::Array<int> >& result) OVERRIDE;
|
| virtual void getDocument(ErrorString*, RefPtr<TypeBuilder::DOM::Node>& root) OVERRIDE;
|
| @@ -205,6 +207,7 @@ private:
|
|
|
| InspectorDOMAgent(InspectorPageAgent*, InjectedScriptManager*, InspectorOverlay*);
|
|
|
| + bool enabled() const;
|
| void setSearchingForNode(ErrorString*, SearchMode, JSONObject* highlightConfig);
|
| PassOwnPtr<HighlightConfig> highlightConfigFromInspectorObject(ErrorString*, JSONObject* highlightInspectorObject);
|
|
|
|
|