| Index: Source/core/layout/line/TrailingObjects.h
|
| diff --git a/Source/core/layout/line/TrailingObjects.h b/Source/core/layout/line/TrailingObjects.h
|
| index 89fb2f30bdac04d7f0d75722e26dc0319a839486..e04cdc82c25267220986081600c7e340949de227 100644
|
| --- a/Source/core/layout/line/TrailingObjects.h
|
| +++ b/Source/core/layout/line/TrailingObjects.h
|
| @@ -30,7 +30,7 @@ namespace blink {
|
|
|
| class InlineIterator;
|
| class LayoutObject;
|
| -class RenderText;
|
| +class LayoutText;
|
|
|
| struct BidiRun;
|
|
|
| @@ -59,7 +59,7 @@ public:
|
| {
|
| }
|
|
|
| - void setTrailingWhitespace(RenderText* whitespace)
|
| + void setTrailingWhitespace(LayoutText* whitespace)
|
| {
|
| ASSERT(whitespace);
|
| m_whitespace = whitespace;
|
| @@ -85,7 +85,7 @@ public:
|
| void updateMidpointsForTrailingObjects(LineMidpointState&, const InlineIterator& lBreak, CollapseFirstSpaceOrNot);
|
|
|
| private:
|
| - RenderText* m_whitespace;
|
| + LayoutText* m_whitespace;
|
| Vector<LayoutObject*, 4> m_objects;
|
| };
|
|
|
|
|