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

Issue 2460223003: Support Service Worker NavigationPreload with PlzNavigate. (Closed)

Created:
4 years, 1 month ago by horo
Modified:
4 years ago
Reviewers:
falken, *clamy, alexmos, piman
CC:
chromium-reviews, michaeln, jsbell+serviceworker_chromium.org, serviceworker-reviews, creis+watch_chromium.org, shimazu+serviceworker_chromium.org, nasko+codewatch_chromium.org, jam, kinuko+serviceworker, nhiroki, darin-cc_chromium.org, horo+watch_chromium.org, kinuko+watch, tzik, blink-worker-reviews_chromium.org, mmenke
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Support Service Worker NavigationPreload with PlzNavigate. When ServiceWorkerFetchDispatcher sends the navigation preload request, it gets a ResourceMessageFilter from RsourceRequestInfoImpl::filter() to create a URLLoaderFactoryImpl. But if PlzNavigate is enabled, RsourceRequestInfoImpl::filter returns null. So ServiceWorkerFetchDispatcher can't send the navigation preload request. To solve this problem, this CL do the following: - NavigationRequest::OnStartChecksComplete() gets the ResourceMessageFilter of the navigating_frame_host's process and pass it to ServiceWorkerNavigationHandleCore on the UI thread. - On the IO thread, ServiceWorkerNavigationHandleCore::DidPreCreateProviderHost() pass the ResourceMessageFilter to the ServiceWorkerProviderHost. - So ServiceWorkerFetchDispatcher::MaybeStartNavigationPreload() can get the filter from the ServiceWorkerProviderHost and create a URLLoaderFactoryImpl. BUG=649558 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_site_isolation

Patch Set 1 #

Patch Set 2 : Keep ResourceMessageFilter in ServiceWorkerProviderHost. #

Total comments: 10

Patch Set 3 : add comments #

Patch Set 4 : rebase and remove service_worker_browsertest.cc #

Patch Set 5 : fix windows compile error #

Unified diffs Side-by-side diffs Delta from patch set Stats (+106 lines, -45 lines) Patch
M content/browser/frame_host/navigation_handle_impl.h View 1 2 2 chunks +3 lines, -1 line 0 comments Download
M content/browser/frame_host/navigation_handle_impl.cc View 1 2 1 chunk +4 lines, -3 lines 0 comments Download
M content/browser/frame_host/navigation_request.cc View 1 2 3 2 chunks +5 lines, -1 line 0 comments Download
M content/browser/renderer_host/render_process_host_impl.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/renderer_host/render_process_host_impl.cc View 1 2 3 1 chunk +4 lines, -0 lines 0 comments Download
M content/browser/service_worker/foreign_fetch_request_handler.cc View 1 1 chunk +3 lines, -3 lines 0 comments Download
M content/browser/service_worker/service_worker_controllee_request_handler.cc View 1 1 chunk +3 lines, -4 lines 0 comments Download
M content/browser/service_worker/service_worker_fetch_dispatcher.h View 1 2 chunks +4 lines, -1 line 0 comments Download
M content/browser/service_worker/service_worker_fetch_dispatcher.cc View 1 2 2 chunks +12 lines, -10 lines 0 comments Download
M content/browser/service_worker/service_worker_navigation_handle.h View 1 2 chunks +3 lines, -2 lines 0 comments Download
M content/browser/service_worker/service_worker_navigation_handle.cc View 1 1 chunk +4 lines, -3 lines 0 comments Download
M content/browser/service_worker/service_worker_navigation_handle_core.h View 1 2 chunks +10 lines, -6 lines 0 comments Download
M content/browser/service_worker/service_worker_navigation_handle_core.cc View 1 3 chunks +8 lines, -2 lines 0 comments Download
M content/browser/service_worker/service_worker_provider_host.h View 1 3 chunks +11 lines, -0 lines 0 comments Download
M content/browser/service_worker/service_worker_provider_host.cc View 1 3 chunks +10 lines, -0 lines 0 comments Download
M content/browser/service_worker/service_worker_url_request_job.h View 1 2 3 4 3 chunks +3 lines, -1 line 0 comments Download
M content/browser/service_worker/service_worker_url_request_job.cc View 1 3 chunks +6 lines, -3 lines 0 comments Download
M content/browser/service_worker/service_worker_url_request_job_unittest.cc View 1 1 chunk +2 lines, -2 lines 0 comments Download
M content/public/browser/render_process_host.h View 1 chunk +5 lines, -0 lines 0 comments Download
M content/public/test/mock_render_process_host.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/public/test/mock_render_process_host.cc View 1 chunk +4 lines, -0 lines 0 comments Download
M testing/buildbot/filters/browser-side-navigation.linux.content_browsertests.filter View 1 2 1 chunk +0 lines, -3 lines 0 comments Download

Messages

Total messages: 78 (60 generated)
horo
falken@ Please review this CL.
4 years, 1 month ago (2016-11-01 08:45:27 UTC) #35
falken
(as talked offline horo@ is currently revising this CL so let me know when to ...
4 years, 1 month ago (2016-11-02 05:35:59 UTC) #36
horo
On 2016/11/02 05:35:59, falken wrote: > (as talked offline horo@ is currently revising this CL ...
4 years, 1 month ago (2016-11-02 08:01:36 UTC) #43
falken
this looks good, i just didn't have time to read the tests yet. may be ...
4 years, 1 month ago (2016-11-02 08:16:29 UTC) #46
horo
piman@ Please review: - content/browser/renderer_host/render_process_host_impl.* - content/public/browser/render_process_host.h - content/public/test/mock_render_process_host.*? alexmos@ Please review: - content/browser/frame_host/navigation_handle_impl.* - ...
4 years, 1 month ago (2016-11-02 09:42:28 UTC) #50
falken
lgtm. I gave some suggested comments, of course feel free to edit to your liking. ...
4 years, 1 month ago (2016-11-02 14:15:29 UTC) #51
piman
lgtm
4 years, 1 month ago (2016-11-02 18:33:52 UTC) #52
nasko
Adding clamy@ as a required reviewer, as she has done the main PlzNavigate and SW ...
4 years, 1 month ago (2016-11-02 18:48:54 UTC) #55
alexmos
On 2016/11/02 09:42:28, horo (ooo Nov 3) wrote: > piman@ > Please review: > - ...
4 years, 1 month ago (2016-11-03 00:55:59 UTC) #57
horo
> Actually I'm curious why the browser test was added... I'd think this patch to ...
4 years, 1 month ago (2016-11-03 02:30:43 UTC) #60
horo
I changed my mind. We should have RedirectAndRespondWithNavigationPreload test even without this change. So I ...
4 years, 1 month ago (2016-11-04 09:16:20 UTC) #65
clamy
Would you have a design doc that describe what navigation preload is supposed to do? ...
4 years, 1 month ago (2016-11-04 15:35:27 UTC) #72
horo
On 2016/11/04 15:35:27, clamy (slow) wrote: > Would you have a design doc that describe ...
4 years, 1 month ago (2016-11-04 17:25:49 UTC) #73
nasko
> In this CL, the ResourceMessageFilter is acquired from the speculative RFH when > PlzNavigate ...
4 years, 1 month ago (2016-11-04 18:38:58 UTC) #74
horo
On 2016/11/04 18:38:58, nasko wrote: > > In this CL, the ResourceMessageFilter is acquired from ...
4 years, 1 month ago (2016-11-07 11:06:43 UTC) #75
clamy
On 2016/11/07 11:06:43, horo wrote: > On 2016/11/04 18:38:58, nasko wrote: > > > In ...
4 years, 1 month ago (2016-11-07 17:41:04 UTC) #76
horo
On 2016/11/07 17:41:04, clamy wrote: > On 2016/11/07 11:06:43, horo wrote: > > On 2016/11/04 ...
4 years, 1 month ago (2016-11-08 10:33:34 UTC) #77
horo
4 years ago (2016-12-08 02:19:13 UTC) #78
Let's close this issue.
I landed https://codereview.chromium.org/2497223002/ which enables
NavigationPreload with PlzNavigate.

Powered by Google App Engine
This is Rietveld 408576698