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

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

Issue 1675163002: Rename ComposedTree to FlatTree (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: wip Created 4 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/PendingSelection.cpp
diff --git a/third_party/WebKit/Source/core/editing/PendingSelection.cpp b/third_party/WebKit/Source/core/editing/PendingSelection.cpp
index c33d170db135b538733d97bc5186addddb031682..d5d8fc75144e50e97ceadcf02e7be99976fa83bf 100644
--- a/third_party/WebKit/Source/core/editing/PendingSelection.cpp
+++ b/third_party/WebKit/Source/core/editing/PendingSelection.cpp
@@ -139,8 +139,8 @@ void PendingSelection::commitAlgorithm(LayoutView& layoutView)
void PendingSelection::commit(LayoutView& layoutView)
{
- if (RuntimeEnabledFeatures::selectionForComposedTreeEnabled())
- return commitAlgorithm<EditingInComposedTreeStrategy>(layoutView);
+ if (RuntimeEnabledFeatures::selectionForFlatTreeEnabled())
+ return commitAlgorithm<EditingInFlatTreeStrategy>(layoutView);
commitAlgorithm<EditingStrategy>(layoutView);
}

Powered by Google App Engine
This is Rietveld 408576698