Changeset 282794 in webkit
- Timestamp:
- Sep 20, 2021, 5:14:38 PM (5 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/WebPageProxy.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r282792 r282794 1 2021-09-20 Chris Dumez <cdumez@apple.com> 2 3 Avoid doing a second server pre-connect after a process-swap 4 https://bugs.webkit.org/show_bug.cgi?id=230517 5 6 Reviewed by Geoffrey Garen. 7 8 Avoid doing a second server pre-connect after a process-swap. It is unnecessary as we've already 9 asked the network process to do so before process-swapping. 10 11 * UIProcess/WebPageProxy.cpp: 12 (WebKit::WebPageProxy::loadRequestWithNavigationShared): 13 1 14 2021-09-20 Megan Gardner <megan_gardner@apple.com> 2 15 -
trunk/Source/WebKit/UIProcess/WebPageProxy.cpp
r282788 r282794 1410 1410 addPlatformLoadParameters(process, loadParameters); 1411 1411 1412 preconnectTo(url); 1412 if (shouldTreatAsContinuingLoad == ShouldTreatAsContinuingLoad::No) 1413 preconnectTo(url); 1413 1414 1414 1415 navigation.setIsLoadedWithNavigationShared(true);
Note:
See TracChangeset
for help on using the changeset viewer.