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

Unified Diff: third_party/WebKit/Source/core/editing/RenderedPosition.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/RenderedPosition.cpp
diff --git a/third_party/WebKit/Source/core/editing/RenderedPosition.cpp b/third_party/WebKit/Source/core/editing/RenderedPosition.cpp
index 2300c147f53847a2e736b2676824a8715cbf2c34..0ca8031328c910ad2ca4ee57ae4359f907715ed3 100644
--- a/third_party/WebKit/Source/core/editing/RenderedPosition.cpp
+++ b/third_party/WebKit/Source/core/editing/RenderedPosition.cpp
@@ -71,7 +71,7 @@ RenderedPosition::RenderedPosition(const VisiblePosition& position)
{
}
-RenderedPosition::RenderedPosition(const VisiblePositionInComposedTree& position)
+RenderedPosition::RenderedPosition(const VisiblePositionInFlatTree& position)
: RenderedPosition(position.deepEquivalent(), position.affinity())
{
}
@@ -94,7 +94,7 @@ RenderedPosition::RenderedPosition(const Position& position, TextAffinity affini
m_layoutObject = layoutObjectFromPosition(position);
}
-RenderedPosition::RenderedPosition(const PositionInComposedTree& position, TextAffinity affinity)
+RenderedPosition::RenderedPosition(const PositionInFlatTree& position, TextAffinity affinity)
: RenderedPosition(toPositionInDOMTree(position), affinity)
{
}

Powered by Google App Engine
This is Rietveld 408576698