| Index: third_party/WebKit/Source/core/layout/line/InlineBox.h
|
| diff --git a/third_party/WebKit/Source/core/layout/line/InlineBox.h b/third_party/WebKit/Source/core/layout/line/InlineBox.h
|
| index c52995b60fe32a3158bc57e78bb54453bb1fe328..26060cb2dd845e586b83d53a876275a22cde285b 100644
|
| --- a/third_party/WebKit/Source/core/layout/line/InlineBox.h
|
| +++ b/third_party/WebKit/Source/core/layout/line/InlineBox.h
|
| @@ -54,12 +54,12 @@ public:
|
| {
|
| }
|
|
|
| - InlineBox(LayoutObject& obj, LayoutPoint topLeft, LayoutUnit logicalWidth, bool firstLine, bool constructed,
|
| + InlineBox(InlineBox* inlineBoxForLayoutObject, LayoutPoint topLeft, LayoutUnit logicalWidth, bool firstLine, bool constructed,
|
| bool dirty, bool extracted, bool isHorizontal, InlineBox* next, InlineBox* prev, InlineFlowBox* parent)
|
| : m_next(next)
|
| , m_prev(prev)
|
| , m_parent(parent)
|
| - , m_layoutObject(obj)
|
| + , m_layoutObject(inlineBoxForLayoutObject->layoutObject())
|
| , m_topLeft(topLeft)
|
| , m_logicalWidth(logicalWidth)
|
| , m_bitfields(firstLine, constructed, dirty, extracted, isHorizontal)
|
|
|