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

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

Issue 1164933006: Create LineLayout api (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase + nits Created 5 years, 5 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 89d41e2c0ab6b30c3d990f721d254e2177e1334f..1c72789bcfe196c43c9a9ae8c25718ab05d90616 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