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

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

Issue 209443007: Remove shape-inside support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove now unused segmentIsEmpty Created 6 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
« no previous file with comments | « Source/core/frame/UseCounter.cpp ('k') | Source/core/rendering/LayoutState.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/LayoutState.h
diff --git a/Source/core/rendering/LayoutState.h b/Source/core/rendering/LayoutState.h
index e2612b072c0f35c47b8cd977aed31fe86e6e3c32..e743ccbcd62a81b53f1c95f62b0f7e2e1c4a07be 100644
--- a/Source/core/rendering/LayoutState.h
+++ b/Source/core/rendering/LayoutState.h
@@ -37,7 +37,6 @@ class RenderBlockFlow;
class RenderBox;
class RenderObject;
class RenderFlowThread;
-class ShapeInsideInfo;
class LayoutState {
WTF_MAKE_NONCOPYABLE(LayoutState);
@@ -53,7 +52,6 @@ public:
#endif
, m_columnInfo(0)
, m_next(0)
- , m_shapeInsideInfo(0)
, m_pageLogicalHeight(pageLogicalHeight)
#ifndef NDEBUG
, m_renderer(0)
@@ -100,7 +98,6 @@ public:
bool needsBlockDirectionLocationSetBeforeLayout() const { return m_isPaginated && m_pageLogicalHeight; }
- ShapeInsideInfo* shapeInsideInfo() const { return m_shapeInsideInfo; }
ColumnInfo* columnInfo() const { return m_columnInfo; }
const LayoutRect& clipRect() const { return m_clipRect; }
@@ -127,7 +124,6 @@ private:
// 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;
- ShapeInsideInfo* m_shapeInsideInfo;
// FIXME: Distinguish between the layout clip rect and the paint clip rect which may be larger,
// e.g., because of composited scrolling.
« no previous file with comments | « Source/core/frame/UseCounter.cpp ('k') | Source/core/rendering/LayoutState.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698