| Index: third_party/WebKit/Source/core/editing/commands/EditorCommand.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/EditorCommand.cpp b/third_party/WebKit/Source/core/editing/commands/EditorCommand.cpp
|
| index 015917c2d7d98c7b82119a1249f0cf240a7f9e31..7f1aa4f15f695cc1b0c06a75771b711e95ea7e0b 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/EditorCommand.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/EditorCommand.cpp
|
| @@ -204,7 +204,7 @@ RangeVector* RangesFromCurrentSelectionOrExtendCaret(
|
| // We only supports single selections.
|
| if (selectionModifier.selection().isNone())
|
| return ranges;
|
| - ranges->append(firstRangeOf(selectionModifier.selection()));
|
| + ranges->push_back(firstRangeOf(selectionModifier.selection()));
|
| return ranges;
|
| }
|
|
|
|
|