| Index: third_party/WebKit/Source/core/editing/PendingSelection.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/PendingSelection.cpp b/third_party/WebKit/Source/core/editing/PendingSelection.cpp
|
| index 171560d7703137e7ea9bc51c99b7f8d4a6c9c395..ec03e79ee264839c7292554d6cd6932f102bffd8 100644
|
| --- a/third_party/WebKit/Source/core/editing/PendingSelection.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/PendingSelection.cpp
|
| @@ -76,10 +76,10 @@ VisibleSelectionInFlatTree PendingSelection::calcVisibleSelection(const VisibleS
|
| if (paintBlockCursor) {
|
| VisiblePositionInFlatTree visibleExtent = createVisiblePosition(end, affinity);
|
| visibleExtent = nextPositionOf(visibleExtent, CanSkipOverEditingBoundary);
|
| - return createVisibleSelectionDeprecated(visibleStart, visibleExtent);
|
| + return createVisibleSelection(visibleStart, visibleExtent);
|
| }
|
| const VisiblePositionInFlatTree visibleEnd = createVisiblePosition(end, selectionType == SelectionType::RangeSelection ? TextAffinity::Upstream : affinity);
|
| - return createVisibleSelectionDeprecated(visibleStart, visibleEnd);
|
| + return createVisibleSelection(visibleStart, visibleEnd);
|
| }
|
|
|
| void PendingSelection::commit(LayoutView& layoutView)
|
|
|