| Index: third_party/WebKit/Source/core/layout/LayoutBlock.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutBlock.h b/third_party/WebKit/Source/core/layout/LayoutBlock.h
|
| index 0642d975f118eac70ea2eae3a94b61622db8c25d..7cdaac590b0bb93ba62e1ef87bacb0d5fa7a7212 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutBlock.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutBlock.h
|
| @@ -281,8 +281,10 @@ class CORE_EXPORT LayoutBlock : public LayoutBox {
|
| LayoutUnit collapsedMarginBeforeForChild(const LayoutBox& child) const;
|
| LayoutUnit collapsedMarginAfterForChild(const LayoutBox& child) const;
|
|
|
| - virtual void scrollbarsChanged(bool /*horizontalScrollbarChanged*/,
|
| - bool /*verticalScrollbarChanged*/);
|
| + enum ScrollbarChangeContext { StyleChange, Layout };
|
| + virtual void scrollbarsChanged(bool horizontalScrollbarChanged,
|
| + bool verticalScrollbarChanged,
|
| + ScrollbarChangeContext = Layout);
|
|
|
| LayoutUnit availableLogicalWidthForContent() const {
|
| return (logicalRightOffsetForContent() - logicalLeftOffsetForContent())
|
|
|