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

Unified Diff: third_party/WebKit/Source/core/editing/iterators/SearchBuffer.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/iterators/SearchBuffer.cpp
diff --git a/third_party/WebKit/Source/core/editing/iterators/SearchBuffer.cpp b/third_party/WebKit/Source/core/editing/iterators/SearchBuffer.cpp
index b49cfdd90c232e758c8ba638e35b701ed529a902..f9d370e090bb93bd096353fedefa6cbe7692c1ea 100644
--- a/third_party/WebKit/Source/core/editing/iterators/SearchBuffer.cpp
+++ b/third_party/WebKit/Source/core/editing/iterators/SearchBuffer.cpp
@@ -449,9 +449,9 @@ EphemeralRange findPlainText(const EphemeralRange& inputRange, const String& tar
return findPlainTextAlgorithm<EditingStrategy>(inputRange, target, options);
}
-EphemeralRangeInComposedTree findPlainText(const EphemeralRangeInComposedTree& inputRange, const String& target, FindOptions options)
+EphemeralRangeInFlatTree findPlainText(const EphemeralRangeInFlatTree& inputRange, const String& target, FindOptions options)
{
- return findPlainTextAlgorithm<EditingInComposedTreeStrategy>(inputRange, target, options);
+ return findPlainTextAlgorithm<EditingInFlatTreeStrategy>(inputRange, target, options);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698