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

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

Issue 769093002: Remove FlowThreadController and relateds. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase master Created 6 years 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: Source/core/rendering/LayoutState.h
diff --git a/Source/core/rendering/LayoutState.h b/Source/core/rendering/LayoutState.h
index 1cbdc5d7a42bbce390642d6c0a011e419e18a7da..f64820e7ba74fdb4f1d827cfe0ed9d80c38e0162 100644
--- a/Source/core/rendering/LayoutState.h
+++ b/Source/core/rendering/LayoutState.h
@@ -35,6 +35,7 @@ namespace blink {
class ForceHorriblySlowRectMapping;
class RenderBox;
+class RenderFlowThread;
class RenderObject;
class RenderView;
@@ -72,6 +73,8 @@ public:
bool needsBlockDirectionLocationSetBeforeLayout() const { return m_isPaginated && m_pageLogicalHeight; }
+ RenderFlowThread* flowThread() const { return m_flowThread; }
+
ColumnInfo* columnInfo() const { return m_columnInfo; }
RenderObject& renderer() const { return m_renderer; }
@@ -85,6 +88,8 @@ private:
bool m_pageLogicalHeightChanged : 1;
bool m_containingBlockLogicalWidthChanged : 1;
+ RenderFlowThread* m_flowThread;
Julien - ping for review 2014/12/02 16:59:47 Maybe we should add the field to PaintInvalidation
mstensho (USE GERRIT) 2014/12/02 19:41:11 Do you have a bug report on that? I think paint in
+
// If the enclosing pagination model is a column model, then this will store column information for easy retrieval/manipulation.
ColumnInfo* m_columnInfo;
LayoutState* m_next;

Powered by Google App Engine
This is Rietveld 408576698