|
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
Total comments: 10
|
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
|
Total messages: 78 (60 generated)
|