| Index: third_party/WebKit/Source/core/editing/commands/SimplifyMarkupCommand.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/SimplifyMarkupCommand.cpp b/third_party/WebKit/Source/core/editing/commands/SimplifyMarkupCommand.cpp
|
| index c7fd0fdae8d920a1fdd1f13b6715cb3741993760..296a67f844906fbc5928d4db1d11a7341b380e9c 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/SimplifyMarkupCommand.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/SimplifyMarkupCommand.cpp
|
| @@ -65,7 +65,7 @@ void SimplifyMarkupCommand::doApply(EditingState* editingState) {
|
| while (currentNode != rootNode) {
|
| if (currentNode->parentNode() != rootNode &&
|
| isRemovableBlock(currentNode))
|
| - nodesToRemove.append(currentNode);
|
| + nodesToRemove.push_back(currentNode);
|
|
|
| currentNode = currentNode->parentNode();
|
| if (!currentNode)
|
| @@ -90,7 +90,7 @@ void SimplifyMarkupCommand::doApply(EditingState* editingState) {
|
| for (Node& node : NodeTraversal::inclusiveAncestorsOf(*startingNode)) {
|
| if (node == topNodeWithStartingStyle)
|
| break;
|
| - nodesToRemove.append(static_cast<ContainerNode*>(&node));
|
| + nodesToRemove.push_back(static_cast<ContainerNode*>(&node));
|
| }
|
| }
|
| }
|
|
|