| 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
|
|
|