| Index: Source/core/editing/ReplaceSelectionCommand.h
|
| diff --git a/Source/core/editing/ReplaceSelectionCommand.h b/Source/core/editing/ReplaceSelectionCommand.h
|
| index b6eacc700190dd8efbd28142312af49c2133e8c8..7a7602b55cac69066884c754246cbd5aa16f6366 100644
|
| --- a/Source/core/editing/ReplaceSelectionCommand.h
|
| +++ b/Source/core/editing/ReplaceSelectionCommand.h
|
| @@ -60,10 +60,10 @@ private:
|
|
|
| class InsertedNodes {
|
| public:
|
| - void respondToNodeInsertion(Node*);
|
| - void willRemoveNodePreservingChildren(Node*);
|
| - void willRemoveNode(Node*);
|
| - void didReplaceNode(Node*, Node* newNode);
|
| + void respondToNodeInsertion(Node&);
|
| + void willRemoveNodePreservingChildren(Node&);
|
| + void willRemoveNode(Node&);
|
| + void didReplaceNode(Node&, Node& newNode);
|
|
|
| Node* firstNodeInserted() const { return m_firstNodeInserted.get(); }
|
| Node* lastLeafInserted() const { return m_lastNodeInserted->lastDescendant(); }
|
|
|