| 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 ed38b3620b2b058ece2a25a96e5f62c0aeea167b..660b95ac525a4582a43f3a392a04554e3232ddbd 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutScrollbarPart.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutScrollbarPart.cpp
|
| @@ -184,10 +184,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
|
|
|