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

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

Issue 1997033002: Move continuation getter and setter down to LayoutBlockFlow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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
Index: third_party/WebKit/Source/core/layout/LayoutInline.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutInline.h b/third_party/WebKit/Source/core/layout/LayoutInline.h
index 98a84b8040b5a32449d780fa18f44d52b02648a9..3699d87befbd875d684a6c0037078b0c510db26a 100644
--- a/third_party/WebKit/Source/core/layout/LayoutInline.h
+++ b/third_party/WebKit/Source/core/layout/LayoutInline.h
@@ -32,6 +32,8 @@
namespace blink {
+class LayoutBlockFlow;
+
// LayoutInline is the LayoutObject associated with display: inline.
// This is called an "inline box" in CSS 2.1.
// http://www.w3.org/TR/CSS2/visuren.html#inline-boxes
@@ -215,9 +217,9 @@ private:
void moveChildrenToIgnoringContinuation(LayoutInline* to, LayoutObject* startChild);
- void splitInlines(LayoutBlock* fromBlock, LayoutBlock* toBlock, LayoutBlock* middleBlock,
+ void splitInlines(LayoutBlockFlow* fromBlock, LayoutBlockFlow* toBlock, LayoutBlockFlow* middleBlock,
LayoutObject* beforeChild, LayoutBoxModelObject* oldCont);
- void splitFlow(LayoutObject* beforeChild, LayoutBlock* newBlockBox,
+ void splitFlow(LayoutObject* beforeChild, LayoutBlockFlow* newBlockBox,
LayoutObject* newChild, LayoutBoxModelObject* oldCont);
void layout() final { ASSERT_NOT_REACHED(); } // Do nothing for layout()
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutBoxModelObject.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutInline.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698