Index: third_party/WebKit/Source/core/layout/LayoutObject.cpp |
diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.cpp b/third_party/WebKit/Source/core/layout/LayoutObject.cpp |
index 7a252825530381c2eaec7f19d5edaf3c56f2a6ca..3c12822dd02da06fc18b311fb2441b37dad3d554 100644 |
--- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp |
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp |
@@ -3240,10 +3240,10 @@ bool LayoutObject::isInert() const |
return layoutObject->node()->isInert(); |
} |
-void LayoutObject::imageChanged(ImageResource* image, const IntRect* rect) |
+void LayoutObject::imageChanged(bool isNotifyingFinish, ImageResource* image, const IntRect* rect) |
{ |
ASSERT(m_node); |
- imageChanged(static_cast<WrappedImagePtr>(image), rect); |
+ imageChanged(isNotifyingFinish, static_cast<WrappedImagePtr>(image), rect); |
} |
Element* LayoutObject::offsetParent() const |