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

Issue 1379883003: Create PaintChunk and begin writing code to build paint chunks. (Closed)

Created:
5 years, 2 months ago by jbroman
Modified:
5 years, 2 months ago
Reviewers:
chrishtr, pdr., trchen
CC:
blink-reviews, blink-reviews-platform-graphics_chromium.org, Rik, chromium-reviews, danakj, dshwang, drott+blinkwatch_chromium.org, krit, f(malita), Justin Novosad, pdr+graphicswatchlist_chromium.org, rwlbuis, Stephen Chennney
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Create PaintChunk and begin writing code to build paint chunks. BUG=537409 Committed: https://crrev.com/55136969558bd7d8b3456cd1447442a5425fd9df Cr-Commit-Position: refs/heads/master@{#352369}

Patch Set 1 #

Patch Set 2 : README.md #

Patch Set 3 : remove code that strips non-drawings, for now #

Patch Set 4 : #

Patch Set 5 : revert unintended change to SubsequenceRecorder #

Patch Set 6 : #

Total comments: 28

Patch Set 7 : code review comments #

Patch Set 8 : two now-superfluous fwd decls #

Patch Set 9 : correct comment #

Total comments: 1

Patch Set 10 : README.md change per chrishtr #

Patch Set 11 : remove toStdVector from PaintChunkerTest #

Patch Set 12 : enable RuntimeEnabledFeature for PaintChunkerTest #

Total comments: 3
Unified diffs Side-by-side diffs Delta from patch set Stats (+498 lines, -22 lines) Patch
M third_party/WebKit/Source/platform/blink_platform.gypi View 3 chunks +7 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.h View 1 2 3 4 5 6 7 8 9 10 4 chunks +16 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.cpp View 1 2 3 4 5 6 7 8 9 10 6 chunks +23 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/DisplayItemListTest.cpp View 1 2 3 4 5 6 7 8 9 10 3 chunks +19 lines, -1 line 0 comments Download
A third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h View 1 2 3 4 5 1 chunk +53 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/platform/graphics/paint/PaintChunker.h View 1 2 3 4 5 6 1 chunk +41 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/platform/graphics/paint/PaintChunker.cpp View 1 2 3 4 5 6 1 chunk +67 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/platform/graphics/paint/PaintChunkerTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +85 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/platform/graphics/paint/PaintProperties.h View 1 chunk +36 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/platform/graphics/paint/README.md View 1 2 3 4 5 6 7 8 9 1 chunk +115 lines, -0 lines 0 comments Download
A + third_party/WebKit/Source/platform/testing/PaintPrinters.h View 1 2 3 4 5 6 7 8 2 chunks +8 lines, -21 lines 3 comments Download
A third_party/WebKit/Source/platform/testing/PaintPrinters.cpp View 1 chunk +28 lines, -0 lines 0 comments Download

Messages

Total messages: 22 (3 generated)
jbroman
As part of this, I'd like to start documenting SPv2 as it gets implemented (with ...
5 years, 2 months ago (2015-09-30 23:02:15 UTC) #2
pdr.
Great! Lots of small comments. +cc chrishtr, can you review the changes to platform/graphics/paint/README.md? https://chromiumcodereview.appspot.com/1379883003/diff/100001/third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h ...
5 years, 2 months ago (2015-10-01 00:32:48 UTC) #4
trchen
https://chromiumcodereview.appspot.com/1379883003/diff/100001/third_party/WebKit/Source/platform/graphics/paint/PaintChunker.cpp File third_party/WebKit/Source/platform/graphics/paint/PaintChunker.cpp (right): https://chromiumcodereview.appspot.com/1379883003/diff/100001/third_party/WebKit/Source/platform/graphics/paint/PaintChunker.cpp#newcode18 third_party/WebKit/Source/platform/graphics/paint/PaintChunker.cpp:18: void PaintChunker::updateCurrentPaintProperties(const PaintProperties& properties) I think we can improve ...
5 years, 2 months ago (2015-10-01 02:19:36 UTC) #5
pdr.
https://chromiumcodereview.appspot.com/1379883003/diff/100001/third_party/WebKit/Source/platform/graphics/paint/README.md File third_party/WebKit/Source/platform/graphics/paint/README.md (right): https://chromiumcodereview.appspot.com/1379883003/diff/100001/third_party/WebKit/Source/platform/graphics/paint/README.md#newcode53 third_party/WebKit/Source/platform/graphics/paint/README.md:53: *** On 2015/10/01 at 02:19:36, trchen wrote: > I'm ...
5 years, 2 months ago (2015-10-01 02:29:03 UTC) #6
jbroman
https://codereview.chromium.org/1379883003/diff/100001/third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h File third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h (right): https://codereview.chromium.org/1379883003/diff/100001/third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h#newcode15 third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h:15: // This is expected to be owned by the ...
5 years, 2 months ago (2015-10-01 18:04:21 UTC) #7
pdr.
LGTM here. Chris, could you do a pass over the README.md (and the overall design, ...
5 years, 2 months ago (2015-10-01 18:31:35 UTC) #8
chrishtr
https://codereview.chromium.org/1379883003/diff/160001/third_party/WebKit/Source/platform/graphics/paint/README.md File third_party/WebKit/Source/platform/graphics/paint/README.md (right): https://codereview.chromium.org/1379883003/diff/160001/third_party/WebKit/Source/platform/graphics/paint/README.md#newcode76 third_party/WebKit/Source/platform/graphics/paint/README.md:76: Support for cached subsequences for SPv2 is planned, but ...
5 years, 2 months ago (2015-10-01 18:49:38 UTC) #9
jbroman
On 2015/10/01 at 18:49:38, chrishtr wrote: > https://codereview.chromium.org/1379883003/diff/160001/third_party/WebKit/Source/platform/graphics/paint/README.md > File third_party/WebKit/Source/platform/graphics/paint/README.md (right): > > https://codereview.chromium.org/1379883003/diff/160001/third_party/WebKit/Source/platform/graphics/paint/README.md#newcode76 ...
5 years, 2 months ago (2015-10-02 01:03:43 UTC) #10
jbroman
5 years, 2 months ago (2015-10-02 01:04:13 UTC) #11
jbroman
Bump. (I've also removed toStdVector from PaintChunkerTest, as alexclarke@ recently landed a CL (https://codereview.chromium.org/1373833003) which ...
5 years, 2 months ago (2015-10-05 13:22:09 UTC) #12
jbroman
Please hold off; I broke something.
5 years, 2 months ago (2015-10-05 14:12:49 UTC) #13
jbroman
On 2015/10/05 at 14:12:49, jbroman wrote: > Please hold off; I broke something. Okay, unbroken.
5 years, 2 months ago (2015-10-05 17:13:02 UTC) #14
chrishtr
lgtm https://codereview.chromium.org/1379883003/diff/220001/third_party/WebKit/Source/platform/testing/PaintPrinters.h File third_party/WebKit/Source/platform/testing/PaintPrinters.h (right): https://codereview.chromium.org/1379883003/diff/220001/third_party/WebKit/Source/platform/testing/PaintPrinters.h#newcode17 third_party/WebKit/Source/platform/testing/PaintPrinters.h:17: // To avoid ODR violations, these should also ...
5 years, 2 months ago (2015-10-05 17:23:41 UTC) #15
pdr.
On 2015/10/05 at 17:13:02, jbroman wrote: > On 2015/10/05 at 14:12:49, jbroman wrote: > > ...
5 years, 2 months ago (2015-10-05 17:23:49 UTC) #16
jbroman
https://codereview.chromium.org/1379883003/diff/220001/third_party/WebKit/Source/platform/testing/PaintPrinters.h File third_party/WebKit/Source/platform/testing/PaintPrinters.h (right): https://codereview.chromium.org/1379883003/diff/220001/third_party/WebKit/Source/platform/testing/PaintPrinters.h#newcode17 third_party/WebKit/Source/platform/testing/PaintPrinters.h:17: // To avoid ODR violations, these should also be ...
5 years, 2 months ago (2015-10-05 17:25:53 UTC) #17
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1379883003/220001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1379883003/220001
5 years, 2 months ago (2015-10-05 17:31:27 UTC) #19
jbroman
https://codereview.chromium.org/1379883003/diff/220001/third_party/WebKit/Source/platform/testing/PaintPrinters.h File third_party/WebKit/Source/platform/testing/PaintPrinters.h (right): https://codereview.chromium.org/1379883003/diff/220001/third_party/WebKit/Source/platform/testing/PaintPrinters.h#newcode17 third_party/WebKit/Source/platform/testing/PaintPrinters.h:17: // To avoid ODR violations, these should also be ...
5 years, 2 months ago (2015-10-05 18:05:07 UTC) #20
commit-bot: I haz the power
Committed patchset #12 (id:220001)
5 years, 2 months ago (2015-10-05 18:51:57 UTC) #21
commit-bot: I haz the power
5 years, 2 months ago (2015-10-05 18:56:24 UTC) #22
Message was sent while issue was closed.
Patchset 12 (id:??) landed as
https://crrev.com/55136969558bd7d8b3456cd1447442a5425fd9df
Cr-Commit-Position: refs/heads/master@{#352369}

Powered by Google App Engine
This is Rietveld 408576698