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

Unified Diff: third_party/WebKit/Source/core/layout/line/LineBreaker.h

Issue 1899193007: Remove special-code for paginating floats followed by lines of text. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/line/LineBreaker.h
diff --git a/third_party/WebKit/Source/core/layout/line/LineBreaker.h b/third_party/WebKit/Source/core/layout/line/LineBreaker.h
index 7529db93f1f42516dce8552246b0ab0bd364a67f..4d7c9c7f8d3691daa198d94d685323cd36abef80 100644
--- a/third_party/WebKit/Source/core/layout/line/LineBreaker.h
+++ b/third_party/WebKit/Source/core/layout/line/LineBreaker.h
@@ -45,8 +45,7 @@ public:
reset();
}
- InlineIterator nextLineBreak(InlineBidiResolver&, LineInfo&, LayoutTextInfo&,
- FloatingObject* lastFloatFromPreviousLine, WordMeasurements&);
+ InlineIterator nextLineBreak(InlineBidiResolver&, LineInfo&, LayoutTextInfo&, WordMeasurements&);
bool lineWasHyphenated() { return m_hyphenated; }
const Vector<LineLayoutBox>& positionedObjects() { return m_positionedObjects; }
@@ -54,7 +53,7 @@ public:
private:
void reset();
- void skipLeadingWhitespace(InlineBidiResolver&, LineInfo&, FloatingObject* lastFloatFromPreviousLine, LineWidth&);
+ void skipLeadingWhitespace(InlineBidiResolver&, LineInfo&, LineWidth&);
LineLayoutBlockFlow m_block;
bool m_hyphenated;

Powered by Google App Engine
This is Rietveld 408576698