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

Unified Diff: Source/core/layout/line/LineBreaker.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/InlineIterator.h ('k') | Source/core/layout/line/LineBreaker.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/line/LineBreaker.h
diff --git a/Source/core/layout/line/LineBreaker.h b/Source/core/layout/line/LineBreaker.h
index 7a43362b479c9f004ba383a10a2a951daef43145..9311519a7f5d8bfa2d98307595fde14bc1e6043f 100644
--- a/Source/core/layout/line/LineBreaker.h
+++ b/Source/core/layout/line/LineBreaker.h
@@ -23,6 +23,7 @@
#ifndef LineBreaker_h
#define LineBreaker_h
+#include "core/layout/api/LineLayoutBlockFlow.h"
#include "core/layout/line/InlineIterator.h"
#include "core/layout/line/LineInfo.h"
#include "wtf/Vector.h"
@@ -36,7 +37,7 @@ struct LayoutTextInfo;
class LineBreaker {
public:
friend class BreakingContext;
- LineBreaker(LayoutBlockFlow* block)
+ LineBreaker(LineLayoutBlockFlow block)
: m_block(block)
{
reset();
@@ -53,7 +54,7 @@ private:
void skipLeadingWhitespace(InlineBidiResolver&, LineInfo&, FloatingObject* lastFloatFromPreviousLine, LineWidth&);
- LayoutBlockFlow* m_block;
+ LineLayoutBlockFlow m_block;
bool m_hyphenated;
EClear m_clear;
Vector<LayoutBox*> m_positionedObjects;
« no previous file with comments | « Source/core/layout/line/InlineIterator.h ('k') | Source/core/layout/line/LineBreaker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698