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

Issue 100563004: Redirect HTML resource bytes directly to parser thread (Blink side CL) (Closed)

Created:
7 years ago by oystein (OOO til 10th of July)
Modified:
6 years, 8 months ago
CC:
blink-reviews, sof, eae+blinkwatch, dglazkov+blink, adamk+blink_chromium.org, Nate Chapin, gavinp+loader_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/blink.git@parserthread_decodermove
Visibility:
Public.

Description

Patch Set 1 : #

Patch Set 2 : Missing include #

Total comments: 25

Patch Set 3 : Cache parser thread pointer in HTMLDocumentParser #

Total comments: 14

Patch Set 4 : #

Total comments: 11

Patch Set 5 : #

Patch Set 6 : #

Patch Set 7 : #

Total comments: 15

Patch Set 8 : Review fixes #

Patch Set 9 : Leak fix #

Total comments: 3

Patch Set 10 : #

Patch Set 11 : Rebase #

Patch Set 12 : Conflict fix #

Unified diffs Side-by-side diffs Delta from patch set Stats (+112 lines, -14 lines) Patch
M Source/core/fetch/ResourceLoader.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +6 lines, -0 lines 0 comments Download
M Source/core/fetch/ResourceLoader.cpp View 1 2 3 4 5 6 7 8 9 10 2 chunks +13 lines, -0 lines 0 comments Download
M Source/core/html/parser/BackgroundHTMLParser.h View 1 2 3 4 5 6 7 2 chunks +4 lines, -2 lines 0 comments Download
M Source/core/html/parser/BackgroundHTMLParser.cpp View 1 2 3 4 5 6 7 3 chunks +15 lines, -7 lines 0 comments Download
M Source/core/html/parser/HTMLDocumentParser.cpp View 1 2 3 4 5 6 7 8 9 10 4 chunks +29 lines, -1 line 0 comments Download
D Source/core/html/parser/HTMLParserThread.h View 1 2 3 4 5 6 7 1 chunk +1 line, -2 lines 0 comments Download
M Source/core/html/parser/HTMLParserThread.cpp View 1 2 3 4 5 6 7 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/loader/DocumentLoader.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +5 lines, -0 lines 0 comments Download
M Source/core/loader/DocumentLoader.cpp View 1 2 3 4 5 6 7 8 9 10 2 chunks +7 lines, -0 lines 0 comments Download
A public/platform/WebThreadedDataReceiver.h View 1 2 3 4 5 6 7 1 chunk +22 lines, -0 lines 0 comments Download
M public/platform/WebURLLoader.h View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +8 lines, -0 lines 0 comments Download

Messages

Total messages: 38 (0 generated)
oystein (OOO til 10th of July)
Hi again guys, first pass of this :). There's two linked CLs, one for the ...
7 years ago (2013-12-16 23:13:05 UTC) #1
abarth-chromium
The general approach looks fine. Most of my comments below are about naming. We'll probably ...
7 years ago (2013-12-18 18:28:48 UTC) #2
oystein (OOO til 10th of July)
Thanks abarth, great comments. Second draft is up! https://codereview.chromium.org/100563004/diff/60001/Source/core/html/parser/BackgroundHTMLParser.cpp File Source/core/html/parser/BackgroundHTMLParser.cpp (right): https://codereview.chromium.org/100563004/diff/60001/Source/core/html/parser/BackgroundHTMLParser.cpp#newcode135 Source/core/html/parser/BackgroundHTMLParser.cpp:135: // ...
6 years, 11 months ago (2014-01-13 23:19:50 UTC) #3
abarth-chromium
I'd like to get the crashes with the first CL nailed down before investing a ...
6 years, 11 months ago (2014-01-14 04:05:51 UTC) #4
oystein (OOO til 10th of July)
On 2014/01/14 04:05:51, abarth wrote: > I'd like to get the crashes with the first ...
6 years, 11 months ago (2014-01-24 18:36:25 UTC) #5
abarth-chromium
On 2014/01/24 18:36:25, Oystein wrote: > The crash is confirmed fixed now; the previous CL ...
6 years, 11 months ago (2014-01-24 18:43:13 UTC) #6
oystein (OOO til 10th of July)
On 2014/01/24 18:43:13, abarth wrote: > On 2014/01/24 18:36:25, Oystein wrote: > > The crash ...
6 years, 11 months ago (2014-01-24 18:44:40 UTC) #7
abarth-chromium
On 2014/01/24 18:44:40, Oystein wrote: > On 2014/01/24 18:43:13, abarth wrote: > > On 2014/01/24 ...
6 years, 11 months ago (2014-01-24 18:47:02 UTC) #8
oystein (OOO til 10th of July)
Removing the WIP label; I'm starting to feel pretty OK about this now. The one ...
6 years, 10 months ago (2014-01-28 01:22:16 UTC) #9
oystein (OOO til 10th of July)
On 2014/01/28 01:22:16, Oystein wrote: > Removing the WIP label; I'm starting to feel pretty ...
6 years, 10 months ago (2014-01-28 01:27:39 UTC) #10
oystein (OOO til 10th of July)
ping!
6 years, 10 months ago (2014-02-03 18:58:43 UTC) #11
eseidel
I landed a change to HTMLParserThread since this was made which will confict with this ...
6 years, 10 months ago (2014-02-03 19:16:21 UTC) #12
oystein (OOO til 10th of July)
On 2014/02/03 19:16:21, eseidel wrote: > I landed a change to HTMLParserThread since this was ...
6 years, 10 months ago (2014-02-03 19:20:13 UTC) #13
abarth-chromium
My main concern with this CL is that you haven't encapsulated the implementation details from ...
6 years, 10 months ago (2014-02-03 21:17:36 UTC) #14
oystein (OOO til 10th of July)
Thanks abarth! New version up :). https://codereview.chromium.org/100563004/diff/250001/Source/core/html/parser/BackgroundHTMLParser.cpp File Source/core/html/parser/BackgroundHTMLParser.cpp (right): https://codereview.chromium.org/100563004/diff/250001/Source/core/html/parser/BackgroundHTMLParser.cpp#newcode113 Source/core/html/parser/BackgroundHTMLParser.cpp:113: // as the ...
6 years, 10 months ago (2014-02-05 00:04:59 UTC) #15
darin (slow to review)
Apologies for the radical suggestions. I'd be happy to sit down to discuss in more ...
6 years, 10 months ago (2014-02-16 07:12:26 UTC) #16
oystein (OOO til 10th of July)
Thanks Darin! https://codereview.chromium.org/100563004/diff/390001/public/platform/WebThreadedResourceProvider.h File public/platform/WebThreadedResourceProvider.h (right): https://codereview.chromium.org/100563004/diff/390001/public/platform/WebThreadedResourceProvider.h#newcode45 public/platform/WebThreadedResourceProvider.h:45: virtual void didSwitchedToBackgroundClient() = 0; On 2014/02/16 ...
6 years, 10 months ago (2014-02-20 18:43:07 UTC) #17
darin (slow to review)
On Thu, Feb 20, 2014 at 10:43 AM, <oysteine@chromium.org> wrote: > Thanks Darin! > > ...
6 years, 10 months ago (2014-02-20 19:00:57 UTC) #18
oystein (OOO til 10th of July)
New version up, ptal. The Blink side is really simplified now, and almost all of ...
6 years, 9 months ago (2014-03-04 21:05:07 UTC) #19
jamesr
On 2014/03/04 21:05:07, Oystein wrote: > The current workaround is a bit of an iffy ...
6 years, 9 months ago (2014-03-04 21:07:50 UTC) #20
oystein (OOO til 10th of July)
On 2014/03/04 21:07:50, jamesr wrote: > On 2014/03/04 21:05:07, Oystein wrote: > > The current ...
6 years, 9 months ago (2014-03-04 21:09:19 UTC) #21
oystein (OOO til 10th of July)
darin/abarth: ping :)
6 years, 9 months ago (2014-03-10 18:22:35 UTC) #22
abarth-chromium
This version is much better. Thank you! I've left some minor comments below. https://codereview.chromium.org/100563004/diff/1010001/Source/core/fetch/ResourceLoader.cpp File ...
6 years, 9 months ago (2014-03-10 21:52:19 UTC) #23
oystein (OOO til 10th of July)
Thanks abarth! New version up with the below comments. https://codereview.chromium.org/100563004/diff/1010001/Source/core/fetch/ResourceLoader.cpp File Source/core/fetch/ResourceLoader.cpp (right): https://codereview.chromium.org/100563004/diff/1010001/Source/core/fetch/ResourceLoader.cpp#newcode185 Source/core/fetch/ResourceLoader.cpp:185: ...
6 years, 9 months ago (2014-03-17 21:19:10 UTC) #24
abarth-chromium
LGTM!
6 years, 9 months ago (2014-03-18 00:27:24 UTC) #25
oystein (OOO til 10th of July)
On 2014/03/18 00:27:24, abarth wrote: > LGTM! Fantastic, thanks :). One last-minute issue fixed: I ...
6 years, 9 months ago (2014-03-18 19:32:17 UTC) #26
abarth-chromium
ok
6 years, 9 months ago (2014-03-18 22:52:04 UTC) #27
darin (slow to review)
https://codereview.chromium.org/100563004/diff/1050001/public/platform/WebURLLoader.h File public/platform/WebURLLoader.h (right): https://codereview.chromium.org/100563004/diff/1050001/public/platform/WebURLLoader.h#newcode75 public/platform/WebURLLoader.h:75: // on its thread, rather than the WebURLLoaderClient. If ...
6 years, 9 months ago (2014-03-19 03:51:06 UTC) #28
oystein (OOO til 10th of July)
https://codereview.chromium.org/100563004/diff/1050001/public/platform/WebURLLoader.h File public/platform/WebURLLoader.h (right): https://codereview.chromium.org/100563004/diff/1050001/public/platform/WebURLLoader.h#newcode75 public/platform/WebURLLoader.h:75: // on its thread, rather than the WebURLLoaderClient. If ...
6 years, 9 months ago (2014-03-21 19:26:38 UTC) #29
oystein (OOO til 10th of July)
The CQ bit was checked by oysteine@chromium.org
6 years, 8 months ago (2014-03-31 17:04:20 UTC) #30
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/oysteine@chromium.org/100563004/1070001
6 years, 8 months ago (2014-03-31 17:04:29 UTC) #31
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-03-31 17:04:38 UTC) #32
commit-bot: I haz the power
Failed to apply patch for public/platform/WebURLLoader.h: While running patch -p1 --forward --force --no-backup-if-mismatch; patching file ...
6 years, 8 months ago (2014-03-31 17:04:39 UTC) #33
oystein (OOO til 10th of July)
The CQ bit was checked by oysteine@chromium.org
6 years, 8 months ago (2014-03-31 17:38:07 UTC) #34
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/oysteine@chromium.org/100563004/1090001
6 years, 8 months ago (2014-03-31 17:38:10 UTC) #35
oystein (OOO til 10th of July)
The CQ bit was checked by oysteine@chromium.org
6 years, 8 months ago (2014-03-31 17:56:31 UTC) #36
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/oysteine@chromium.org/100563004/1110001
6 years, 8 months ago (2014-03-31 17:56:38 UTC) #37
commit-bot: I haz the power
6 years, 8 months ago (2014-03-31 19:08:45 UTC) #38
Message was sent while issue was closed.
Change committed as 170476

Powered by Google App Engine
This is Rietveld 408576698