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

Issue 2269513002: Use per-frame task runner in XHR (Closed)

Created:
4 years, 4 months ago by tzik
Modified:
4 years, 3 months ago
CC:
chromium-reviews, blink-reviews, tyoshino+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Use per-frame task runner in XHR The XHR spec describes progress events on XHR are queued on the networking task source, where Networking task runner is the corresponding task runner. https://xhr.spec.whatwg.org/#dom-xmlhttprequest-send BUG=624696 Committed: https://crrev.com/f884e370f225e3cb7cde91f08dcc369952c7b863 Cr-Commit-Position: refs/heads/master@{#417230}

Patch Set 1 #

Patch Set 2 : fix #

Patch Set 3 : make XHRPT own a clone of WebTaskRunner #

Total comments: 4

Patch Set 4 : +comment #

Patch Set 5 : revert to PS1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+2 lines, -1 line) Patch
M third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.cpp View 1 3 4 2 chunks +2 lines, -1 line 0 comments Download

Messages

Total messages: 57 (28 generated)
tzik
PTAL
4 years, 4 months ago (2016-08-22 06:52:58 UTC) #9
haraken
LGTM Remove the 123456... in the CL description :)
4 years, 4 months ago (2016-08-22 07:31:35 UTC) #10
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2269513002/20001
4 years, 4 months ago (2016-08-23 07:32:30 UTC) #16
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on master.tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/278875)
4 years, 4 months ago (2016-08-23 09:27:50 UTC) #18
tzik
I updated the CL to fix the test failure. We had to hold a ref ...
4 years, 4 months ago (2016-08-24 04:37:12 UTC) #23
haraken
On 2016/08/24 04:37:12, tzik wrote: > I updated the CL to fix the test failure. ...
4 years, 4 months ago (2016-08-24 05:03:22 UTC) #24
tzik
On 2016/08/24 05:03:22, haraken wrote: > On 2016/08/24 04:37:12, tzik wrote: > > I updated ...
4 years, 4 months ago (2016-08-24 09:28:48 UTC) #25
haraken
On 2016/08/24 09:28:48, tzik wrote: > On 2016/08/24 05:03:22, haraken wrote: > > On 2016/08/24 ...
4 years, 4 months ago (2016-08-24 10:37:29 UTC) #27
Sami
lgtm.
4 years, 4 months ago (2016-08-24 13:53:26 UTC) #28
dcheng
https://codereview.chromium.org/2269513002/diff/40001/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.cpp File third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.cpp (right): https://codereview.chromium.org/2269513002/diff/40001/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.cpp#newcode85 third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.cpp:85: , m_taskRunner(std::move(taskRunner)) I'm a bit confused why we need ...
4 years, 3 months ago (2016-08-24 23:30:34 UTC) #29
haraken
https://codereview.chromium.org/2269513002/diff/40001/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.cpp File third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.cpp (right): https://codereview.chromium.org/2269513002/diff/40001/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.cpp#newcode85 third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.cpp:85: , m_taskRunner(std::move(taskRunner)) On 2016/08/24 23:30:34, dcheng wrote: > I'm ...
4 years, 3 months ago (2016-08-24 23:51:58 UTC) #30
dcheng
On 2016/08/24 23:51:58, haraken wrote: > https://codereview.chromium.org/2269513002/diff/40001/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.cpp > File > third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.cpp > (right): > > ...
4 years, 3 months ago (2016-08-25 00:39:40 UTC) #31
haraken
On 2016/08/25 00:39:40, dcheng wrote: > On 2016/08/24 23:51:58, haraken wrote: > > > https://codereview.chromium.org/2269513002/diff/40001/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.cpp ...
4 years, 3 months ago (2016-08-25 00:55:56 UTC) #32
dcheng
On 2016/08/25 00:55:56, haraken wrote: > On 2016/08/25 00:39:40, dcheng wrote: > > On 2016/08/24 ...
4 years, 3 months ago (2016-08-25 01:12:19 UTC) #33
haraken
Discussed offline with dcheng. Would it be an option to make TimerBase own std::unique_ptr<WebTaskRunner> and ...
4 years, 3 months ago (2016-08-25 02:29:33 UTC) #34
dcheng
On 2016/08/25 02:29:33, haraken wrote: > Discussed offline with dcheng. > > Would it be ...
4 years, 3 months ago (2016-08-25 04:04:54 UTC) #35
yhirano
https://codereview.chromium.org/2269513002/diff/40001/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h File third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h (right): https://codereview.chromium.org/2269513002/diff/40001/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h#newcode112 third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h:112: std::unique_ptr<WebTaskRunner> m_taskRunner; Please add some comments describing why this ...
4 years, 3 months ago (2016-08-25 04:28:25 UTC) #37
Sami
On 2016/08/25 02:29:33, haraken wrote: > Discussed offline with dcheng. > > Would it be ...
4 years, 3 months ago (2016-08-25 12:54:52 UTC) #38
tzik
https://codereview.chromium.org/2269513002/diff/40001/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h File third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h (right): https://codereview.chromium.org/2269513002/diff/40001/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h#newcode112 third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h:112: std::unique_ptr<WebTaskRunner> m_taskRunner; On 2016/08/25 04:28:25, yhirano wrote: > Please ...
4 years, 3 months ago (2016-08-29 02:08:59 UTC) #39
haraken
On 2016/08/29 02:08:59, tzik wrote: > https://codereview.chromium.org/2269513002/diff/40001/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h > File > third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h > (right): > > ...
4 years, 3 months ago (2016-08-29 02:30:35 UTC) #40
tzik
On 2016/08/29 02:30:35, haraken wrote: > On 2016/08/29 02:08:59, tzik wrote: > > > https://codereview.chromium.org/2269513002/diff/40001/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h ...
4 years, 3 months ago (2016-08-30 13:13:48 UTC) #41
haraken
On 2016/08/30 13:13:48, tzik wrote: > On 2016/08/29 02:30:35, haraken wrote: > > On 2016/08/29 ...
4 years, 3 months ago (2016-08-30 15:40:36 UTC) #42
tzik
On 2016/08/30 15:40:36, haraken wrote: > On 2016/08/30 13:13:48, tzik wrote: > > On 2016/08/29 ...
4 years, 3 months ago (2016-09-07 13:37:19 UTC) #47
yhirano
lgtm
4 years, 3 months ago (2016-09-07 13:56:22 UTC) #48
haraken
LGTM
4 years, 3 months ago (2016-09-07 14:33:59 UTC) #49
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2269513002/80001
4 years, 3 months ago (2016-09-08 07:28:33 UTC) #52
commit-bot: I haz the power
Committed patchset #5 (id:80001)
4 years, 3 months ago (2016-09-08 09:12:15 UTC) #54
commit-bot: I haz the power
Patchset 5 (id:??) landed as https://crrev.com/f884e370f225e3cb7cde91f08dcc369952c7b863 Cr-Commit-Position: refs/heads/master@{#417230}
4 years, 3 months ago (2016-09-08 09:14:05 UTC) #56
tzik
4 years, 2 months ago (2016-10-11 13:31:18 UTC) #57
Message was sent while issue was closed.
A revert of this CL (patchset #5 id:80001) has been created in
https://codereview.chromium.org/2407233002/ by tzik@chromium.org.

The reason for reverting is: Speculative revert for http://crbug.com/645365.
Will reland once it turns out being not the case..

Powered by Google App Engine
This is Rietveld 408576698