| Index: Source/core/editing/iterators/SimplifiedBackwardsTextIterator.h
|
| diff --git a/Source/core/editing/iterators/SimplifiedBackwardsTextIterator.h b/Source/core/editing/iterators/SimplifiedBackwardsTextIterator.h
|
| index 2659a91ef238fa4e75a3cf42a9637e3eac71b1cb..5baf728b14fd37127dd9aa6ba24d979fd09b890b 100644
|
| --- a/Source/core/editing/iterators/SimplifiedBackwardsTextIterator.h
|
| +++ b/Source/core/editing/iterators/SimplifiedBackwardsTextIterator.h
|
| @@ -33,8 +33,8 @@
|
|
|
| namespace blink {
|
|
|
| -class RenderText;
|
| -class RenderTextFragment;
|
| +class LayoutText;
|
| +class LayoutTextFragment;
|
|
|
| // 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
|
| @@ -72,7 +72,7 @@ private:
|
| void init(Node* startNode, Node* endNode, int startOffset, int endOffset);
|
| void exitNode();
|
| bool handleTextNode();
|
| - RenderText* handleFirstLetter(int& startOffset, int& offsetInNode);
|
| + LayoutText* handleFirstLetter(int& startOffset, int& offsetInNode);
|
| bool handleReplacedElement();
|
| bool handleNonTextNode();
|
| void emitCharacter(UChar, Node*, int startOffset, int endOffset);
|
|
|