| Index: third_party/WebKit/Source/core/layout/FloatingObjects.h
|
| diff --git a/third_party/WebKit/Source/core/layout/FloatingObjects.h b/third_party/WebKit/Source/core/layout/FloatingObjects.h
|
| index 71ae474e57872005d11cac85f8f859a6a5e822ac..a43103515bb0559d2d8e009fa5aa3770106ae017 100644
|
| --- a/third_party/WebKit/Source/core/layout/FloatingObjects.h
|
| +++ b/third_party/WebKit/Source/core/layout/FloatingObjects.h
|
| @@ -78,7 +78,7 @@ public:
|
| void setIsInPlacedTree(bool value) { m_isInPlacedTree = value; }
|
| #endif
|
|
|
| - bool shouldPaint() const { return m_shouldPaint; }
|
| + bool shouldPaint() const;
|
| void setShouldPaint(bool shouldPaint) { m_shouldPaint = shouldPaint; }
|
| bool isDescendant() const { return m_isDescendant; }
|
| void setIsDescendant(bool isDescendant) { m_isDescendant = isDescendant; }
|
| @@ -93,6 +93,8 @@ private:
|
| explicit FloatingObject(LayoutBox*);
|
| FloatingObject(LayoutBox*, Type, const LayoutRect&, bool shouldPaint, bool isDescendant, bool isLowestNonOverhangingFloatInChild, bool performingUnsafeClone = false);
|
|
|
| + bool shouldPaintForCompositedLayoutPart();
|
| +
|
| LayoutBox* m_layoutObject;
|
| RootInlineBox* m_originatingLine;
|
| LayoutRect m_frameRect;
|
|
|