|
Create LineLayout api
This is a first step in having the line layout code not talk directly to the LayoutObject hierarchy. Eventually, the plan is to fully isolate the LayoutObject hierarchy from the rest of the codebase (editing, DOM, paint, etc) and use include guards to enforce that. In this way, we can be explicit about not relying on implementation details outside of the box layout code.
This is implemented by creating a POD wrapper around the equivalent LayoutObject class and passing them around by value. This is similar to what the web/ classes do (e.g. WebNode) and we believe this will be extremely low overhead performance wise and strictly equivalent memory wise. In this patch, there happens to be a LayoutObject class for each LineLayout* wrapper class, but that's not required (or even desired) in the end. The first step here is to isolate all the code to make it explicit which parts of the box layout code line layout current needs and then in a followup step to take a step back and figure out what the desired end result is.
Not all files in the layout/line directory have been converted yet. Will occur in following patches.
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+762 lines, -84 lines) |
Patch |
 |
M |
Source/core/core.gypi
|
View
|
1
2
3
4
5
6
|
1 chunk |
+10 lines, -0 lines |
0 comments
|
Download
|
 |
M |
Source/core/layout/FloatingObjects.cpp
|
View
|
|
2 chunks |
+2 lines, -2 lines |
0 comments
|
Download
|
 |
M |
Source/core/layout/LayoutBlockFlow.h
|
View
|
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
A |
Source/core/layout/api/LineLayoutBlockFlow.h
|
View
|
1
2
3
4
|
1 chunk |
+67 lines, -0 lines |
0 comments
|
Download
|
 |
A |
Source/core/layout/api/LineLayoutBlockFlow.cpp
|
View
|
1
2
3
4
|
1 chunk |
+158 lines, -0 lines |
0 comments
|
Download
|
 |
A |
Source/core/layout/api/LineLayoutBox.h
|
View
|
1
2
|
1 chunk |
+31 lines, -0 lines |
0 comments
|
Download
|
 |
A |
Source/core/layout/api/LineLayoutBox.cpp
|
View
|
1
2
3
4
5
6
|
1 chunk |
+43 lines, -0 lines |
0 comments
|
Download
|
 |
A |
Source/core/layout/api/LineLayoutInline.h
|
View
|
1
2
|
1 chunk |
+33 lines, -0 lines |
0 comments
|
Download
|
 |
A |
Source/core/layout/api/LineLayoutInline.cpp
|
View
|
1
2
|
1 chunk |
+43 lines, -0 lines |
0 comments
|
Download
|
 |
A |
Source/core/layout/api/LineLayoutItem.h
|
View
|
1
2
3
4
5
6
|
1 chunk |
+80 lines, -0 lines |
0 comments
|
Download
|
 |
A |
Source/core/layout/api/LineLayoutItem.cpp
|
View
|
|
1 chunk |
+132 lines, -0 lines |
0 comments
|
Download
|
 |
A |
Source/core/layout/api/LineLayoutText.h
|
View
|
1
2
3
|
1 chunk |
+38 lines, -0 lines |
0 comments
|
Download
|
 |
A |
Source/core/layout/api/LineLayoutText.cpp
|
View
|
|
1 chunk |
+36 lines, -0 lines |
0 comments
|
Download
|
 |
M |
Source/core/layout/line/BreakingContextInlineHeaders.h
|
View
|
1
2
|
9 chunks |
+15 lines, -14 lines |
0 comments
|
Download
|
 |
M |
Source/core/layout/line/EllipsisBox.cpp
|
View
|
|
1 chunk |
+0 lines, -1 line |
0 comments
|
Download
|
 |
M |
Source/core/layout/line/InlineIterator.h
|
View
|
1
2
3
4
5
6
|
28 chunks |
+55 lines, -52 lines |
0 comments
|
Download
|
 |
M |
Source/core/layout/line/LineBreaker.h
|
View
|
|
3 chunks |
+3 lines, -2 lines |
0 comments
|
Download
|
 |
M |
Source/core/layout/line/LineBreaker.cpp
|
View
|
|
2 chunks |
+2 lines, -2 lines |
0 comments
|
Download
|
 |
M |
Source/core/layout/line/LineInfo.h
|
View
|
|
2 chunks |
+3 lines, -3 lines |
0 comments
|
Download
|
 |
M |
Source/core/layout/line/LineWidth.h
|
View
|
1
|
3 chunks |
+3 lines, -3 lines |
0 comments
|
Download
|
 |
M |
Source/core/layout/line/LineWidth.cpp
|
View
|
1
2
|
3 chunks |
+3 lines, -3 lines |
0 comments
|
Download
|
 |
M |
Source/core/layout/shapes/ShapeOutsideInfo.h
|
View
|
|
2 chunks |
+2 lines, -1 line |
0 comments
|
Download
|
 |
M |
Source/core/layout/shapes/ShapeOutsideInfo.cpp
|
View
|
|
1 chunk |
+2 lines, -1 line |
0 comments
|
Download
|
Total messages: 9 (3 generated)
|