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

Unified Diff: Source/core/layout/line/LineLayoutState.h

Issue 1168733002: Refactor how we handle BRs with clearance (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated Created 5 years, 6 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: Source/core/layout/line/LineLayoutState.h
diff --git a/Source/core/layout/line/LineLayoutState.h b/Source/core/layout/line/LineLayoutState.h
index e1d9d47a7b752e34696074f57eddac462ab402e7..6a63761ff243d18fbaea2fdad76242a59e31fca8 100644
--- a/Source/core/layout/line/LineLayoutState.h
+++ b/Source/core/layout/line/LineLayoutState.h
@@ -42,7 +42,6 @@ public:
, m_checkForFloatsFromLastLine(false)
, m_hasInlineChild(false)
, m_isFullLayout(fullLayout)
- , m_containsBRWithClear(false)
, m_paintInvalidationLogicalTop(paintInvalidationLogicalTop)
, m_paintInvalidationLogicalBottom(paintInvalidationLogicalBottom)
, m_adjustedLogicalLineTop(0)
@@ -77,8 +76,6 @@ public:
bool hasInlineChild() const { return m_hasInlineChild; }
void setHasInlineChild(bool hasInlineChild) { m_hasInlineChild = hasInlineChild; }
- bool containsBRWithClear() const { return m_containsBRWithClear; }
- void setContainsBRWithClear(bool containsBRWithClear) { m_containsBRWithClear = containsBRWithClear; }
LineInfo& lineInfo() { return m_lineInfo; }
const LineInfo& lineInfo() const { return m_lineInfo; }
@@ -117,8 +114,6 @@ private:
bool m_isFullLayout;
- bool m_containsBRWithClear;
-
// FIXME: Should this be a range object instead of two ints?
LayoutUnit& m_paintInvalidationLogicalTop;
LayoutUnit& m_paintInvalidationLogicalBottom;
« Source/core/layout/LayoutBlockFlowLine.cpp ('K') | « Source/core/layout/LayoutBlockFlowLine.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698