| Index: third_party/WebKit/Source/core/layout/LayoutScrollbarPart.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutScrollbarPart.cpp b/third_party/WebKit/Source/core/layout/LayoutScrollbarPart.cpp
|
| index 1e8c8e4e050967276846ff601061d1e4585a904c..4563b3bf059ff8a1e9d0c20d4000e171624253aa 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutScrollbarPart.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutScrollbarPart.cpp
|
| @@ -185,10 +185,10 @@ void LayoutScrollbarPart::styleDidChange(StyleDifference diff, const ComputedSty
|
| setNeedsPaintInvalidation();
|
| }
|
|
|
| -void LayoutScrollbarPart::imageChanged(WrappedImagePtr image, const IntRect* rect)
|
| +void LayoutScrollbarPart::imageChanged(bool isNotifyingFinish, WrappedImagePtr image, const IntRect* rect)
|
| {
|
| setNeedsPaintInvalidation();
|
| - LayoutBlock::imageChanged(image, rect);
|
| + LayoutBlock::imageChanged(isNotifyingFinish, image, rect);
|
| }
|
|
|
| LayoutObject* LayoutScrollbarPart::layoutObjectOwningScrollbar() const
|
|
|