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

Issue 1149953007: Create LineLayout api (Closed)

Created:
5 years, 6 months ago by ikilpatrick
Modified:
5 years, 4 months ago
CC:
blink-reviews, blink-reviews-rendering, eae+blinkwatch, jchaffraix+rendering, leviw+renderwatch, pdr+renderingwatchlist_chromium.org, szager+layoutwatch_chromium.org, zoltan1
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Target Ref:
refs/heads/master
Project:
blink
Visibility:
Public.

Description

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.

Patch Set 1 #

Patch Set 2 : upload #

Patch Set 3 : upload. #

Patch Set 4 : upload.. #

Patch Set 5 : upload... #

Patch Set 6 : . #

Patch Set 7 : removed source of crash. #

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

Messages

Total messages: 9 (3 generated)
ikilpatrick
5 years, 6 months ago (2015-06-03 05:28:49 UTC) #2
leviw_travelin_and_unemployed
5 years, 6 months ago (2015-06-03 19:06:20 UTC) #4
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1149953007/100001
5 years, 6 months ago (2015-06-03 19:06:47 UTC) #5
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_blink_rel on tryserver.blink (JOB_FAILED, http://build.chromium.org/p/tryserver.blink/builders/linux_blink_rel/builds/64814)
5 years, 6 months ago (2015-06-03 20:24:43 UTC) #7
ikilpatrick
Removed crashes. There were some typos in InlineIterator.h which did LayoutObject -> LineLayoutBlockFlow, instead of ...
5 years, 6 months ago (2015-06-04 11:15:54 UTC) #8
pilgrim_google
5 years, 6 months ago (2015-06-08 14:00:48 UTC) #9

Powered by Google App Engine
This is Rietveld 408576698