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

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

Issue 926193003: Move rendering/RenderBox to layout/LayoutBox. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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/InlineFlowBox.cpp ('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 5e43d1083b13f7ed0198e97b9c58513f07143602..7275a90557dc0978d20e92160274a4b5964835c4 100644
--- a/Source/core/layout/line/LineBreaker.h
+++ b/Source/core/layout/line/LineBreaker.h
@@ -46,7 +46,7 @@ public:
FloatingObject* lastFloatFromPreviousLine, WordMeasurements&);
bool lineWasHyphenated() { return m_hyphenated; }
- const Vector<RenderBox*>& positionedObjects() { return m_positionedObjects; }
+ const Vector<LayoutBox*>& positionedObjects() { return m_positionedObjects; }
EClear clear() { return m_clear; }
private:
void reset();
@@ -56,7 +56,7 @@ private:
RenderBlockFlow* m_block;
bool m_hyphenated;
EClear m_clear;
- Vector<RenderBox*> m_positionedObjects;
+ Vector<LayoutBox*> m_positionedObjects;
};
}
« no previous file with comments | « Source/core/layout/line/InlineFlowBox.cpp ('k') | Source/core/layout/line/LineBreaker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698