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

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

Issue 1149953007: Create LineLayout api (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: removed source of crash. 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
« no previous file with comments | « Source/core/layout/line/LineInfo.h ('k') | Source/core/layout/line/LineWidth.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/line/LineWidth.h
diff --git a/Source/core/layout/line/LineWidth.h b/Source/core/layout/line/LineWidth.h
index 8f8316d5df12c5766562ed7b2a9a5fe471e89297..1d3e501eea83c6bc50c3a64f2a3bfacee66102d4 100644
--- a/Source/core/layout/line/LineWidth.h
+++ b/Source/core/layout/line/LineWidth.h
@@ -30,6 +30,7 @@
#ifndef LineWidth_h
#define LineWidth_h
+#include "core/layout/api/LineLayoutBlockFlow.h"
#include "platform/LayoutUnit.h"
namespace blink {
@@ -37,14 +38,13 @@ namespace blink {
class FloatingObject;
class LayoutObject;
class LayoutRubyRun;
-class LayoutBlockFlow;
enum IndentTextOrNot { DoNotIndentText, IndentText };
enum WhitespaceTreatment { ExcludeWhitespace, IncludeWhitespace };
class LineWidth {
public:
- LineWidth(LayoutBlockFlow&, bool isFirstLine, IndentTextOrNot shouldIndentText);
+ LineWidth(LineLayoutBlockFlow, bool isFirstLine, IndentTextOrNot shouldIndentText);
bool fitsOnLine() const { return currentWidth() <= (m_availableWidth + LayoutUnit::epsilon()); }
bool fitsOnLine(float extra) const { return currentWidth() + extra <= (m_availableWidth + LayoutUnit::epsilon()); }
@@ -75,7 +75,7 @@ private:
void updateLineDimension(LayoutUnit newLineTop, LayoutUnit newLineWidth, const float& newLineLeft, const float& newLineRight);
void wrapNextToShapeOutside(bool isFirstLine);
- LayoutBlockFlow& m_block;
+ LineLayoutBlockFlow m_block;
float m_uncommittedWidth;
float m_committedWidth;
float m_overhangWidth; // The amount by which |m_availableWidth| has been inflated to account for possible contraction due to ruby overhang.
« no previous file with comments | « Source/core/layout/line/LineInfo.h ('k') | Source/core/layout/line/LineWidth.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698