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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutBlock.h

Issue 1977823002: Move makeChildrenNonInline() and childBecameNonInline() to LayoutBlockFlow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | « no previous file | third_party/WebKit/Source/core/layout/LayoutBlock.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/layout/LayoutBlock.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutBlock.h b/third_party/WebKit/Source/core/layout/LayoutBlock.h
index e29f54a992c0347d86d6de84fad7c9a18707a4a7..79d265ff8ea5831408270115850a47720f16d62f 100644
--- a/third_party/WebKit/Source/core/layout/LayoutBlock.h
+++ b/third_party/WebKit/Source/core/layout/LayoutBlock.h
@@ -385,8 +385,6 @@ private:
bool isLayoutBlock() const final { return true; }
- void makeChildrenNonInline(LayoutObject* insertionPoint = nullptr);
-
virtual void removeLeftoverAnonymousBlock(LayoutBlock* child);
void dirtyLinesFromChangedChild(LayoutObject* child) final { m_lineBoxes.dirtyLinesFromChangedChild(LineLayoutItem(this), LineLayoutItem(child)); }
@@ -408,8 +406,6 @@ private:
void computeBlockPreferredLogicalWidths(LayoutUnit& minLogicalWidth, LayoutUnit& maxLogicalWidth) const;
- void childBecameNonInline(LayoutObject* child) final;
-
bool isSelectionRoot() const;
public:
@@ -474,10 +470,6 @@ protected:
unsigned m_hasPositionedObjects : 1;
unsigned m_hasPercentHeightDescendants : 1;
- // LayoutRubyBase objects need to be able to split and merge, moving their children around
- // (calling moveChildTo, moveAllChildrenTo, and makeChildrenNonInline).
- friend class LayoutRubyBase;
-
// FIXME: This is temporary as we move code that accesses block flow
// member variables out of LayoutBlock and into LayoutBlockFlow.
friend class LayoutBlockFlow;
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/LayoutBlock.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698