| Index: Source/core/layout/line/AbstractInlineTextBox.h
|
| diff --git a/Source/core/layout/line/AbstractInlineTextBox.h b/Source/core/layout/line/AbstractInlineTextBox.h
|
| index 6269c9468e858d9f9508a3ed59fc721a17f70707..fae2fb830e56c1123c581d1a73cd11777aece69b 100644
|
| --- a/Source/core/layout/line/AbstractInlineTextBox.h
|
| +++ b/Source/core/layout/line/AbstractInlineTextBox.h
|
| @@ -47,8 +47,8 @@ class InlineTextBox;
|
| // get information about InlineTextBoxes without tight coupling.
|
| class CORE_EXPORT AbstractInlineTextBox : public RefCounted<AbstractInlineTextBox> {
|
| private:
|
| - AbstractInlineTextBox(LayoutText* renderText, InlineTextBox* inlineTextBox)
|
| - : m_renderText(renderText)
|
| + AbstractInlineTextBox(LayoutText* layoutText, InlineTextBox* inlineTextBox)
|
| + : m_renderText(layoutText)
|
| , m_inlineTextBox(inlineTextBox)
|
| {
|
| }
|
| @@ -73,7 +73,7 @@ public:
|
| BottomToTop
|
| };
|
|
|
| - LayoutText* renderText() const { return m_renderText; }
|
| + LayoutText* layoutText() const { return m_renderText; }
|
|
|
| PassRefPtr<AbstractInlineTextBox> nextInlineTextBox() const;
|
| LayoutRect bounds() const;
|
|
|