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

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

Issue 296413007: [New Multicolumn] Add support for column-span:all (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@359976
Patch Set: code review 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/RenderBlockFlow.cpp ('k') | Source/core/rendering/RenderFlowThread.cpp » ('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 127edc4e01a4d82fe6b4b20f182eedb382fa6ba8..9f2bca1e720b9304d2ed3738ad430dad33994e9c 100644
--- a/Source/core/rendering/RenderFlowThread.h
+++ b/Source/core/rendering/RenderFlowThread.h
@@ -67,6 +67,14 @@ public:
// can easily avoid drawing the children directly.
virtual LayerType layerTypeRequired() const OVERRIDE FINAL { return NormalLayer; }
+ // Column spanners are moved out of the flow thread to live among column sets. If |child| is
+ // such a renderer, resolve it to the placeholder that lives at the original location in the
+ // tree.
+ virtual RenderObject* resolveMovedChild(RenderObject* child) const { return child; }
+
+ virtual void flowThreadDescendantInserted(RenderObject*) { }
+ virtual void flowThreadDescendantOrSiblingWillBeRemoved(RenderObject*) { }
+
virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction) OVERRIDE FINAL;
virtual void addRegionToThread(RenderMultiColumnSet*) = 0;
@@ -158,9 +166,9 @@ protected:
typedef PODInterval<LayoutUnit, RenderMultiColumnSet*> MultiColumnSetInterval;
typedef PODIntervalTree<LayoutUnit, RenderMultiColumnSet*> MultiColumnSetIntervalTree;
- class RegionSearchAdapter {
+ class MultiColumnSetSearchAdapter {
public:
- RegionSearchAdapter(LayoutUnit offset)
+ MultiColumnSetSearchAdapter(LayoutUnit offset)
: m_offset(offset)
, m_result(0)
{
@@ -170,11 +178,11 @@ protected:
const LayoutUnit& highValue() const { return m_offset; }
void collectIfNeeded(const MultiColumnSetInterval&);
- RenderRegion* result() const { return m_result; }
+ RenderMultiColumnSet* result() const { return m_result; }
private:
LayoutUnit m_offset;
- RenderRegion* m_result;
+ RenderMultiColumnSet* m_result;
};
// A maps from RenderBox
« no previous file with comments | « Source/core/rendering/RenderBlockFlow.cpp ('k') | Source/core/rendering/RenderFlowThread.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698