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

Issue 451623002: Getting rid of net::LOAD_ENABLE_LOAD_TIMING (Closed)

Created:
6 years, 4 months ago by Lukasz Jagielski
Modified:
6 years, 4 months ago
Reviewers:
kenrb, jam, mmenke
CC:
chromium-reviews, darin-cc_chromium.org, cbentzel+watch_chromium.org, jam
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Project:
chromium
Visibility:
Public.

Description

Getting rid of net::LOAD_ENABLE_LOAD_CONTENT. There are too many load flags. This one is only used by loader code. BUG= Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=289318

Patch Set 1 #

Total comments: 1

Patch Set 2 : Added TODO, test fixup. #

Total comments: 2

Patch Set 3 : Fixup. #

Total comments: 1

Patch Set 4 : content/child/request_info.cc: updated constructor #

Patch Set 5 : Fixed content/browser/loader/resource_scheduler_unittest.cc. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+67 lines, -51 lines) Patch
M chrome/test/data/webui/net_internals/log_view_painter.js View 1 11 chunks +18 lines, -18 lines 0 comments Download
M content/browser/loader/resource_dispatcher_host_impl.cc View 1 2 3 4 2 chunks +2 lines, -0 lines 0 comments Download
M content/browser/loader/resource_loader.cc View 4 chunks +5 lines, -5 lines 0 comments Download
M content/browser/loader/resource_request_info_impl.h View 3 chunks +4 lines, -0 lines 0 comments Download
M content/browser/loader/resource_request_info_impl.cc View 3 chunks +3 lines, -0 lines 0 comments Download
M content/browser/loader/resource_scheduler_unittest.cc View 1 2 3 4 1 chunk +1 line, -0 lines 0 comments Download
M content/child/request_info.h View 1 2 1 chunk +4 lines, -0 lines 0 comments Download
M content/child/request_info.cc View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M content/child/resource_dispatcher.cc View 1 chunk +1 line, -0 lines 0 comments Download
M content/child/web_url_loader_impl.cc View 2 chunks +2 lines, -1 line 0 comments Download
M content/common/frame_messages.h View 1 2 3 4 1 chunk +1 line, -2 lines 0 comments Download
M content/common/resource_messages.h View 1 chunk +3 lines, -0 lines 0 comments Download
M content/test/test_render_frame_host.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/base/load_flags_list.h View 1 chunk +21 lines, -24 lines 0 comments Download

Messages

Total messages: 24 (0 generated)
Lukasz Jagielski
Hi, Please take a look at my CL proposition. Best Regards, Łukasz
6 years, 4 months ago (2014-08-07 11:35:56 UTC) #1
mmenke
https://codereview.chromium.org/451623002/diff/1/content/browser/loader/resource_request_info_impl.h File content/browser/loader/resource_request_info_impl.h (right): https://codereview.chromium.org/451623002/diff/1/content/browser/loader/resource_request_info_impl.h#newcode181 content/browser/loader/resource_request_info_impl.h:181: bool enable_load_timing_; Did you do any thinking about whether ...
6 years, 4 months ago (2014-08-07 14:40:55 UTC) #2
Lukasz Jagielski
On 2014/08/07 14:40:55, mmenke wrote: > https://codereview.chromium.org/451623002/diff/1/content/browser/loader/resource_request_info_impl.h > File content/browser/loader/resource_request_info_impl.h (right): > > https://codereview.chromium.org/451623002/diff/1/content/browser/loader/resource_request_info_impl.h#newcode181 > ...
6 years, 4 months ago (2014-08-07 15:09:11 UTC) #3
mmenke
On 2014/08/07 15:09:11, Lukasz Jagielski wrote: > On 2014/08/07 14:40:55, mmenke wrote: > > > ...
6 years, 4 months ago (2014-08-07 15:19:44 UTC) #4
Lukasz Jagielski
6 years, 4 months ago (2014-08-08 14:56:40 UTC) #5
mmenke
LGTM, modulo one nit. https://codereview.chromium.org/451623002/diff/20001/chrome/test/data/webui/net_internals/log_view_painter.js File chrome/test/data/webui/net_internals/log_view_painter.js (right): https://codereview.chromium.org/451623002/diff/20001/chrome/test/data/webui/net_internals/log_view_painter.js#newcode933 chrome/test/data/webui/net_internals/log_view_painter.js:933: 'load_flags': 68222976, If you run ...
6 years, 4 months ago (2014-08-08 15:09:54 UTC) #6
Lukasz Jagielski
6 years, 4 months ago (2014-08-08 15:16:15 UTC) #7
mmenke
And still LGTM.
6 years, 4 months ago (2014-08-08 15:19:49 UTC) #8
Lukasz Jagielski
On 2014/08/08 15:19:49, mmenke wrote: > And still LGTM. Do I still need LGTM from ...
6 years, 4 months ago (2014-08-08 15:21:31 UTC) #9
mmenke
On 2014/08/08 15:21:31, Lukasz Jagielski wrote: > On 2014/08/08 15:19:49, mmenke wrote: > > And ...
6 years, 4 months ago (2014-08-08 15:50:24 UTC) #10
Lukasz Jagielski
Hi, Could you please take a look at my CL proposition? Regards, Łukasz
6 years, 4 months ago (2014-08-11 15:10:01 UTC) #11
mmenke
Just to be clear, that was addressed to jam for content/child and content/test, and kenrb ...
6 years, 4 months ago (2014-08-11 15:23:44 UTC) #12
kenrb
ipc lgtm
6 years, 4 months ago (2014-08-11 16:02:02 UTC) #13
jam
lgtm with comment https://codereview.chromium.org/451623002/diff/40001/content/child/request_info.h File content/child/request_info.h (right): https://codereview.chromium.org/451623002/diff/40001/content/child/request_info.h#newcode80 content/child/request_info.h:80: bool enable_load_timing; update the constructor
6 years, 4 months ago (2014-08-11 21:51:32 UTC) #14
Lukasz Jagielski
6 years, 4 months ago (2014-08-12 14:50:30 UTC) #15
Lukasz Jagielski
The CQ bit was checked by ljagielski@opera.com
6 years, 4 months ago (2014-08-12 14:50:57 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/ljagielski@opera.com/451623002/60001
6 years, 4 months ago (2014-08-12 14:53:06 UTC) #17
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: mac_gpu_retina_triggered_tests on tryserver.chromium.gpu ...
6 years, 4 months ago (2014-08-12 15:42:30 UTC) #18
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 4 months ago (2014-08-12 15:51:00 UTC) #19
commit-bot: I haz the power
Try jobs failed on following builders: android_dbg on tryserver.chromium.linux (http://build.chromium.org/p/tryserver.chromium.linux/builders/android_dbg/builds/5821) mac_chromium_rel_swarming on tryserver.chromium.mac (http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_swarming/builds/2227)
6 years, 4 months ago (2014-08-12 15:51:01 UTC) #20
Lukasz Jagielski
6 years, 4 months ago (2014-08-13 14:34:20 UTC) #21
Lukasz Jagielski
The CQ bit was checked by ljagielski@opera.com
6 years, 4 months ago (2014-08-13 14:35:57 UTC) #22
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/ljagielski@opera.com/451623002/80001
6 years, 4 months ago (2014-08-13 14:36:40 UTC) #23
commit-bot: I haz the power
6 years, 4 months ago (2014-08-13 16:40:13 UTC) #24
Message was sent while issue was closed.
Committed patchset #5 (80001) as 289318

Powered by Google App Engine
This is Rietveld 408576698