| Index: third_party/WebKit/Source/core/editing/FrameSelection.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/FrameSelection.cpp b/third_party/WebKit/Source/core/editing/FrameSelection.cpp
|
| index 4d749b552289e2f8e7fc28bc5c34d08c45f18dbf..ff145b2fd52b34caca275f9966dfbc072b35c4c3 100644
|
| --- a/third_party/WebKit/Source/core/editing/FrameSelection.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/FrameSelection.cpp
|
| @@ -175,9 +175,9 @@ void FrameSelection::moveTo(const VisiblePosition &base, const VisiblePosition &
|
| setSelection(VisibleSelection(base, extent, selectionHasDirection), options);
|
| }
|
|
|
| -void FrameSelection::moveTo(const Position &pos, TextAffinity affinity, EUserTriggered userTriggered)
|
| +void FrameSelection::moveTo(const Position &pos, TextAffinity affinity)
|
| {
|
| - SetSelectionOptions options = CloseTyping | ClearTypingStyle | userTriggered;
|
| + SetSelectionOptions options = CloseTyping | ClearTypingStyle;
|
| setSelection(VisibleSelection(pos, affinity, selection().isDirectional()), options);
|
| }
|
|
|
|
|