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

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

Issue 2698793003: Get rid of redundant layout tree update related to selection (Closed)
Patch Set: 2017-02-17T14:28:58 Created 3 years, 10 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/Editor.cpp
diff --git a/third_party/WebKit/Source/core/editing/Editor.cpp b/third_party/WebKit/Source/core/editing/Editor.cpp
index 4bf340fd5f88a108d11159655cef891e15700d7c..e76013abf83f3a8f1f2d7d4fee620ed130d439a1 100644
--- a/third_party/WebKit/Source/core/editing/Editor.cpp
+++ b/third_party/WebKit/Source/core/editing/Editor.cpp
@@ -1627,8 +1627,11 @@ void Editor::respondToChangedSelection(
const Position& oldSelectionStart,
FrameSelection::SetSelectionOptions options) {
spellChecker().respondToChangedSelection(oldSelectionStart, options);
- client().respondToChangedSelection(&frame(),
- frame().selection().getSelectionType());
+ client().respondToChangedSelection(
+ &frame(), frame()
+ .selection()
+ .selectionInDOMTree()
+ .computeSelectionTypeConsideringGranularity());
setStartNewKillRingSequence(true);
}

Powered by Google App Engine
This is Rietveld 408576698