Chromium Code Reviews| Index: third_party/WebKit/Source/core/layout/LayoutBoxModelObject.h |
| diff --git a/third_party/WebKit/Source/core/layout/LayoutBoxModelObject.h b/third_party/WebKit/Source/core/layout/LayoutBoxModelObject.h |
| index cffef09efb130e30eaa221b0988326dc2f01cafb..813deb311a500b9ad4c8d7e6eb1fb062131c5bac 100644 |
| --- a/third_party/WebKit/Source/core/layout/LayoutBoxModelObject.h |
| +++ b/third_party/WebKit/Source/core/layout/LayoutBoxModelObject.h |
| @@ -292,7 +292,9 @@ public: |
| // The rect is in the physical coordinate space of this layout object. |
| void setBackingNeedsPaintInvalidationInRect(const LayoutRect&, PaintInvalidationReason, const LayoutObject&) const; |
| - void invalidateDisplayItemClientOnBacking(const DisplayItemClient&, PaintInvalidationReason) const; |
| + // The third parameter should be equal to the DisplayItemClient if it happens to be a LayoutObjert subclass. It is only used |
|
wkorman
2016/05/31 18:34:15
LayoutObjert -> LayoutObject
chrishtr
2016/05/31 18:51:54
Done.
|
| + // for debugging. |
| + void invalidateDisplayItemClientOnBacking(const DisplayItemClient&, PaintInvalidationReason, const LayoutObject* = nullptr) const; |
| // http://www.w3.org/TR/css3-background/#body-background |
| // <html> root element with no background steals background from its first <body> child. |