Index: third_party/WebKit/Source/core/layout/LayoutObject.h |
diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.h b/third_party/WebKit/Source/core/layout/LayoutObject.h |
index fd213b2e48f2b533015e919f3237c055930036c7..22b11338561f3f08acb160f42cb538ec74088903 100644 |
--- a/third_party/WebKit/Source/core/layout/LayoutObject.h |
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.h |
@@ -227,7 +227,7 @@ public: |
// DisplayItemClient methods. |
LayoutRect visualRect() const override; |
- String debugName() const override; |
+ String debugName() const final; |
LayoutObject* parent() const { return m_parent; } |
bool isDescendantOf(const LayoutObject*) const; |
@@ -1213,13 +1213,13 @@ public: |
virtual int nextOffset(int current) const; |
// ImageResourceObserver override. |
- void imageChanged(ImageResource*, const IntRect* = nullptr) final; |
+ void imageChanged(bool isNotifyingFinish, ImageResource*, const IntRect* = nullptr) final; |
bool willRenderImage() final; |
bool getImageAnimationPolicy(ImageAnimationPolicy&) final; |
// Sub-classes that have an associated image need to override this function |
// to get notified of any image change. |
- virtual void imageChanged(WrappedImagePtr, const IntRect* = nullptr) { } |
+ virtual void imageChanged(bool isNotifyingFinish, WrappedImagePtr, const IntRect* = nullptr) { } |
void selectionStartEnd(int& spos, int& epos) const; |