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

Unified Diff: third_party/WebKit/Source/core/editing/VisibleSelection.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/VisibleSelection.cpp
diff --git a/third_party/WebKit/Source/core/editing/VisibleSelection.cpp b/third_party/WebKit/Source/core/editing/VisibleSelection.cpp
index c8ed0e7135d65ed3da07f86cf2e0f3ec9dccdf98..d7d7114eba27268340cd863f7f6a4058e5741c30 100644
--- a/third_party/WebKit/Source/core/editing/VisibleSelection.cpp
+++ b/third_party/WebKit/Source/core/editing/VisibleSelection.cpp
@@ -954,7 +954,7 @@ void VisibleSelectionTemplate<Strategy>::showTreeForThis() const
#endif
template class CORE_TEMPLATE_EXPORT VisibleSelectionTemplate<EditingStrategy>;
-template class CORE_TEMPLATE_EXPORT VisibleSelectionTemplate<EditingInComposedTreeStrategy>;
+template class CORE_TEMPLATE_EXPORT VisibleSelectionTemplate<EditingInFlatTreeStrategy>;
} // namespace blink
@@ -971,12 +971,12 @@ void showTree(const blink::VisibleSelection* sel)
sel->showTreeForThis();
}
-void showTree(const blink::VisibleSelectionInComposedTree& sel)
+void showTree(const blink::VisibleSelectionInFlatTree& sel)
{
sel.showTreeForThis();
}
-void showTree(const blink::VisibleSelectionInComposedTree* sel)
+void showTree(const blink::VisibleSelectionInFlatTree* sel)
{
if (sel)
sel->showTreeForThis();

Powered by Google App Engine
This is Rietveld 408576698