Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(185)

Unified Diff: third_party/WebKit/Source/core/editing/InputMethodController.cpp

Issue 1889053003: Fix InputConnection.deleteSurroundingText() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use a different method to handle "\n" node Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/editing/InputMethodController.cpp
diff --git a/third_party/WebKit/Source/core/editing/InputMethodController.cpp b/third_party/WebKit/Source/core/editing/InputMethodController.cpp
index 532d114c4474dd5d350eec85d64df9090f6be9cd..f6c001c603e9f6a0e8d75dd21837035ce7891ae2 100644
--- a/third_party/WebKit/Source/core/editing/InputMethodController.cpp
+++ b/third_party/WebKit/Source/core/editing/InputMethodController.cpp
@@ -560,6 +560,69 @@ void InputMethodController::extendSelectionAndDelete(int before, int after)
TypingCommand::deleteSelection(*frame().document());
}
+// TODO(yabinh): We should reduce the number of selectionchange events.
+void InputMethodController::deleteSurroundingText(size_t before, size_t after)
+{
+ if (!editor().canEdit())
+ return;
+ PlainTextRange selectionOffsets(getSelectionOffsets());
+ if (selectionOffsets.isNull())
+ return;
+ Element* rootEditableElement = frame().selection().rootEditableElement();
+ if (!rootEditableElement)
+ return;
+
+ size_t selectionStart = selectionOffsets.start();
+ size_t selectionEnd = selectionOffsets.end();
+
+ if (before > 0u && selectionStart > 0u) {
+ // In case of exceeding the left boundary.
+ int start = std::max(static_cast<int>(selectionStart) - static_cast<int>(before), 0);
+
+ // Select the text to be deleted before selectionStart.
+ // For multi-code text, we can't select it successfully if we only
yosin_UTC9 2016/10/04 09:59:54 What do you mean "multi-code text"? Do you mean a
yabinh 2016/10/11 03:16:57 Yes. I'll add some comment in the next patch.
+ // select the right half of it. So we need to adjust the start of
+ // selection.
+ const EphemeralRange range = PlainTextRange(0, start).createRange(*rootEditableElement);
yosin_UTC9 2016/10/04 09:59:54 s/const EphemeralRange/const EphemeralRange&/
yabinh 2016/10/11 03:16:57 Done.
+ if (range.isNull())
+ return;
+ Position position = range.endPosition();
+ Position adjustedPosition = previousPositionOf(nextPositionOf(position, PositionMoveType::GraphemeCluster), PositionMoveType::GraphemeCluster);
+ int diff = adjustedPosition.computeOffsetInContainerNode() - position.computeOffsetInContainerNode();
Changwan Ryu 2016/07/20 08:37:42 what should happen if adjustedPosition and positio
yabinh 2016/07/20 11:49:16 There is no such case. I'll add assertion here.
+ start = start + diff;
+
+ if (!setSelectionOffsets(PlainTextRange(start, static_cast<int>(selectionStart))))
+ return;
+ TypingCommand::deleteSelection(*frame().document());
+
+ selectionEnd = selectionEnd - (selectionStart - start);
+ selectionStart = start;
+ }
+
+ if (after > 0u) {
+ // Adjust the deleted range in case of exceeding the right boundary.
+ PlainTextRange range(0, static_cast<int>(selectionEnd + after));
+ if (range.isNull())
+ return;
+ const EphemeralRange validRange = range.createRange(*rootEditableElement);
+ if (validRange.isNull())
+ return;
+ int end = PlainTextRange::create(*rootEditableElement, validRange).end();
+
+ // We also need to adjust the end of selection for multi-code text.
+ Position position = validRange.endPosition();
yosin_UTC9 2016/10/04 09:59:54 nit: s/Position/const Position&/
yabinh 2016/10/11 03:16:57 Done.
+ Position adjustedPosition = nextPositionOf(previousPositionOf(position, PositionMoveType::GraphemeCluster), PositionMoveType::GraphemeCluster);
yosin_UTC9 2016/10/04 09:59:54 nit: s/Position/const Position&/
yabinh 2016/10/11 03:16:57 Done.
+ int diff = adjustedPosition.computeOffsetInContainerNode() - position.computeOffsetInContainerNode();
Changwan Ryu 2016/07/20 08:37:42 same comment applies here
yosin_UTC9 2016/10/04 09:59:54 We should handle in case of position.computeContai
yabinh 2016/10/11 03:16:57 It seems that we couldn't find such a case. As we
+ end = end + diff;
+
+ if (!setSelectionOffsets(PlainTextRange(static_cast<int>(selectionEnd), end)))
+ return;
+ TypingCommand::deleteSelection(*frame().document());
+ }
+
+ setSelectionOffsets(PlainTextRange(selectionStart, selectionEnd));
+}
+
DEFINE_TRACE(InputMethodController)
{
visitor->trace(m_frame);

Powered by Google App Engine
This is Rietveld 408576698