| Index: third_party/WebKit/Source/core/editing/iterators/TextIterator.h
|
| diff --git a/third_party/WebKit/Source/core/editing/iterators/TextIterator.h b/third_party/WebKit/Source/core/editing/iterators/TextIterator.h
|
| index 06b195052290f0c0def059b512072f2f3c2069ca..8e0b8b822bb04947ef4ac62d747d2b140d298454 100644
|
| --- a/third_party/WebKit/Source/core/editing/iterators/TextIterator.h
|
| +++ b/third_party/WebKit/Source/core/editing/iterators/TextIterator.h
|
| @@ -44,7 +44,7 @@ class LayoutTextFragment;
|
|
|
| CORE_EXPORT String plainText(const EphemeralRange&, TextIteratorBehaviorFlags = TextIteratorDefaultBehavior);
|
|
|
| -String plainText(const EphemeralRangeInComposedTree&, TextIteratorBehaviorFlags = TextIteratorDefaultBehavior);
|
| +String plainText(const EphemeralRangeInFlatTree&, TextIteratorBehaviorFlags = TextIteratorDefaultBehavior);
|
|
|
| // Iterates through the DOM range, returning all the text, and 0-length boundaries
|
| // at points where replaced elements break up the text flow. The text comes back in
|
| @@ -202,10 +202,10 @@ private:
|
| };
|
|
|
| extern template class CORE_EXTERN_TEMPLATE_EXPORT TextIteratorAlgorithm<EditingStrategy>;
|
| -extern template class CORE_EXTERN_TEMPLATE_EXPORT TextIteratorAlgorithm<EditingInComposedTreeStrategy>;
|
| +extern template class CORE_EXTERN_TEMPLATE_EXPORT TextIteratorAlgorithm<EditingInFlatTreeStrategy>;
|
|
|
| using TextIterator = TextIteratorAlgorithm<EditingStrategy>;
|
| -using TextIteratorInComposedTree = TextIteratorAlgorithm<EditingInComposedTreeStrategy>;
|
| +using TextIteratorInFlatTree = TextIteratorAlgorithm<EditingInFlatTreeStrategy>;
|
|
|
| } // namespace blink
|
|
|
|
|