| Index: third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h
|
| diff --git a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h
|
| index 7a8bb6d012a45c8beabec769e63c4ec55db16687..2aa1d6a89fc471574b4b93481eb73bcc7aed0f9e 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h
|
| +++ b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h
|
| @@ -393,6 +393,7 @@ public:
|
|
|
| IntRect resizerCornerRect(const IntRect&, ResizerHitTestType) const;
|
|
|
| + // TODO(ymalik): Remove box() and update callers to use layoutBox() instead.
|
| LayoutBox& box() const;
|
| PaintLayer* layer() const;
|
|
|
| @@ -408,6 +409,8 @@ public:
|
| ScrollAnchor& scrollAnchor() { return m_scrollAnchor; }
|
| bool isPaintLayerScrollableArea() const override { return true; }
|
|
|
| + LayoutBox* layoutBox() const override { return &box(); }
|
| +
|
| bool shouldRebuildHorizontalScrollbarLayer() const { return m_rebuildHorizontalScrollbarLayer; }
|
| bool shouldRebuildVerticalScrollbarLayer() const { return m_rebuildVerticalScrollbarLayer; }
|
| void resetRebuildScrollbarLayerFlags();
|
|
|