| Index: Source/core/inspector/InspectorDOMAgent.h
|
| diff --git a/Source/core/inspector/InspectorDOMAgent.h b/Source/core/inspector/InspectorDOMAgent.h
|
| index 1a62ab09a65e4107f4f5570a2e3143db457513b3..63ff8a60a03c0bbbcfac9c38ff9c29bee6afc646 100644
|
| --- a/Source/core/inspector/InspectorDOMAgent.h
|
| +++ b/Source/core/inspector/InspectorDOMAgent.h
|
| @@ -142,6 +142,7 @@ public:
|
| virtual void highlightNode(ErrorString*, const RefPtr<JSONObject>& highlightConfig, const int* nodeId, const String* objectId) OVERRIDE;
|
| virtual void highlightFrame(ErrorString*, const String& frameId, const RefPtr<JSONObject>* color, const RefPtr<JSONObject>* outlineColor) OVERRIDE;
|
|
|
| + virtual void copyTo(ErrorString*, int nodeId, int targetElementId, const int* const anchorNodeId, const bool* const deep, int* newNodeId) OVERRIDE;
|
| virtual void moveTo(ErrorString*, int nodeId, int targetNodeId, const int* anchorNodeId, int* newNodeId) OVERRIDE;
|
| virtual void undo(ErrorString*) OVERRIDE;
|
| virtual void redo(ErrorString*) OVERRIDE;
|
| @@ -229,6 +230,7 @@ private:
|
| void unbind(Node*, NodeToIdMap*);
|
|
|
| Node* assertEditableNode(ErrorString*, int nodeId);
|
| + Node* assertEditableChildNode(ErrorString*, Element* parentElement, int nodeId);
|
| Element* assertEditableElement(ErrorString*, int nodeId);
|
|
|
| void inspect(Node*);
|
|
|