| Index: Source/core/rendering/InlineBox.h
|
| diff --git a/Source/core/rendering/InlineBox.h b/Source/core/rendering/InlineBox.h
|
| index 8f2a4ff153eaafcd7bf529e83a3c308729b8015f..2aadc90766e5ff271679e6dc3a8868cca94022dd 100644
|
| --- a/Source/core/rendering/InlineBox.h
|
| +++ b/Source/core/rendering/InlineBox.h
|
| @@ -30,6 +30,8 @@ class HitTestRequest;
|
| class HitTestResult;
|
| class RootInlineBox;
|
|
|
| +enum MarkLineBoxes { MarkLineBoxesDirty, DontMarkLineBoxes };
|
| +
|
| // InlineBox represents a rectangle that occurs on a line. It corresponds to
|
| // some RenderObject (i.e., it represents a portion of that RenderObject).
|
| class InlineBox {
|
| @@ -147,7 +149,7 @@ public:
|
| void setFirstLineStyleBit(bool firstLine) { m_bitfields.setFirstLine(firstLine); }
|
| bool isFirstLineStyle() const { return m_bitfields.firstLine(); }
|
|
|
| - void remove();
|
| + void remove(MarkLineBoxes = MarkLineBoxesDirty);
|
|
|
| InlineBox* nextOnLine() const { return m_next; }
|
| InlineBox* prevOnLine() const { return m_prev; }
|
|
|