Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(579)

Unified Diff: third_party/WebKit/Source/core/layout/LayoutObject.cpp

Issue 1728313003: Split ImageResourceClient into ResourceClient and ImageResourceObserver [2/2] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit refine. Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698