| Index: third_party/WebKit/Source/core/editing/SelectionController.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/SelectionController.cpp b/third_party/WebKit/Source/core/editing/SelectionController.cpp
|
| index b798e6497b6c6ec9635e814ffef0eaf72d7b1754..f3ad2d2b9358b9f113fa23f3e04cf77edbcdacd0 100644
|
| --- a/third_party/WebKit/Source/core/editing/SelectionController.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/SelectionController.cpp
|
| @@ -691,14 +691,10 @@ void SelectionController::setNonDirectionalSelectionIfNeeded(
|
| selection().isHandleVisible() == isHandleVisible)
|
| return;
|
|
|
| - const FrameSelection::SetSelectionOptions options =
|
| - isHandleVisible
|
| - ? FrameSelection::CloseTyping | FrameSelection::ClearTypingStyle |
|
| - FrameSelection::HandleVisible
|
| - : FrameSelection::CloseTyping | FrameSelection::ClearTypingStyle;
|
| -
|
| - selection().setSelection(newSelection, options, CursorAlignOnScroll::IfNeeded,
|
| - granularity);
|
| + selection().setSelection(
|
| + newSelection, handleVisibility,
|
| + FrameSelection::CloseTyping | FrameSelection::ClearTypingStyle,
|
| + CursorAlignOnScroll::IfNeeded, granularity);
|
| }
|
|
|
| void SelectionController::setCaretAtHitTestResult(
|
|
|