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

Unified Diff: Source/core/rendering/RenderFlowThread.h

Issue 551263005: *** DO NOT LAND *** Implement column-span:all without reparenting renderers. Work in progress. (Closed) Base URL: git:blink.git@new-multicol-no-renderer-reparenting
Patch Set: Copy margin properties from a spanner to its spanner set, to simplify code. Created 6 years, 3 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
« no previous file with comments | « Source/core/rendering/RenderBox.cpp ('k') | Source/core/rendering/RenderMultiColumnFlowThread.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderFlowThread.h
diff --git a/Source/core/rendering/RenderFlowThread.h b/Source/core/rendering/RenderFlowThread.h
index d7770740d7fde73d06e14cbf662074f1f72c192a..451388d2783ec761f918a6eb07db0bc7c98c0c58 100644
--- a/Source/core/rendering/RenderFlowThread.h
+++ b/Source/core/rendering/RenderFlowThread.h
@@ -68,11 +68,11 @@ public:
virtual LayerType layerTypeRequired() const OVERRIDE FINAL { return NormalLayer; }
virtual bool hasColumnSpanner(const RenderObject*) const { return false; }
- virtual LayoutUnit spannerLogicalTopAdjustment(RenderBox* renderer, LayoutUnit logicalTop) const { return LayoutUnit(); }
- virtual void enterColumnSpanner(RenderBox*, LayoutUnit& logicalTop) { }
+ virtual LayoutUnit enterColumnSpanner(RenderBox*, LayoutUnit logicalTop) { return LayoutUnit(); }
virtual void leaveColumnSpanner(RenderBox*, LayoutUnit logicalBottom) { }
virtual void flowThreadDescendantInserted(RenderObject*) { }
virtual void flowThreadDescendantWillBeRemoved(RenderObject*) { }
+ virtual void flowThreadDescendantStyleDidChange(RenderObject*) { }
virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction) OVERRIDE FINAL;
« no previous file with comments | « Source/core/rendering/RenderBox.cpp ('k') | Source/core/rendering/RenderMultiColumnFlowThread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698