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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutBox.h

Issue 2786463004: Paint backgrounds of a table section/row in one display item (Closed)
Patch Set: First round of rebaseline-cl Created 3 years, 9 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/LayoutBox.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutBox.h b/third_party/WebKit/Source/core/layout/LayoutBox.h
index aca950dfdaef5226338fab9bb65e51c04b10e851..015d5ade1d1f7b25c254ab6ab6b4efb623853a3d 100644
--- a/third_party/WebKit/Source/core/layout/LayoutBox.h
+++ b/third_party/WebKit/Source/core/layout/LayoutBox.h
@@ -489,10 +489,10 @@ class CORE_EXPORT LayoutBox : public LayoutBoxModelObject {
void addVisualEffectOverflow();
LayoutRectOutsets computeVisualEffectOverflowOutsets();
- void addOverflowFromChild(LayoutBox* child) {
+ void addOverflowFromChild(const LayoutBox* child) {
wkorman 2017/03/31 22:15:41 If modifying signature and it won't be null perhap
Xianzhu 2017/03/31 23:26:30 Done.
addOverflowFromChild(child, child->locationOffset());
}
- void addOverflowFromChild(LayoutBox* child, const LayoutSize& delta);
+ void addOverflowFromChild(const LayoutBox* child, const LayoutSize& delta);
Xianzhu 2017/03/31 23:26:30 Done.
void clearLayoutOverflow();
void clearAllOverflows() { m_overflow.reset(); }

Powered by Google App Engine
This is Rietveld 408576698