Index: third_party/WebKit/Source/core/editing/commands/BreakBlockquoteCommand.cpp |
diff --git a/third_party/WebKit/Source/core/editing/commands/BreakBlockquoteCommand.cpp b/third_party/WebKit/Source/core/editing/commands/BreakBlockquoteCommand.cpp |
index 5a239feeab99cde4e899e5064f4147929a3725f1..2ea3a63b7e6346a21291d911b26ffc82d8a3d030 100644 |
--- a/third_party/WebKit/Source/core/editing/commands/BreakBlockquoteCommand.cpp |
+++ b/third_party/WebKit/Source/core/editing/commands/BreakBlockquoteCommand.cpp |
@@ -241,7 +241,7 @@ void BreakBlockquoteCommand::doApply(EditingState* editingState) { |
// into the clone corresponding to the ancestor's parent. |
Element* ancestor = nullptr; |
Element* clonedParent = nullptr; |
- for (ancestor = ancestors.first(), |
+ for (ancestor = ancestors.front(), |
clonedParent = clonedAncestor->parentElement(); |
ancestor && ancestor != topBlockquote; |
ancestor = ancestor->parentElement(), |
@@ -253,7 +253,7 @@ void BreakBlockquoteCommand::doApply(EditingState* editingState) { |
} |
// If the startNode's original parent is now empty, remove it |
- Element* originalParent = ancestors.first().get(); |
+ Element* originalParent = ancestors.front().get(); |
if (!originalParent->hasChildren()) { |
removeNode(originalParent, editingState); |
if (editingState->isAborted()) |