Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Introduce ResourceLoadStatisticsParameters and move members from Netw…
…orkSessionCreationParameters https://bugs.webkit.org/show_bug.cgi?id=208895 Patch by Alex Christensen <achristensen@webkit.org> on 2020-03-11 Reviewed by Youenn Fablet. No change in behavior yet, but this will help us organize things better. * NetworkProcess/NetworkProcess.cpp: (WebKit::NetworkProcess::initializeNetworkProcess): * NetworkProcess/NetworkSession.cpp: (WebKit::NetworkSession::NetworkSession): * NetworkProcess/NetworkSessionCreationParameters.cpp: (WebKit::NetworkSessionCreationParameters::encode const): (WebKit::NetworkSessionCreationParameters::decode): * NetworkProcess/NetworkSessionCreationParameters.h: * NetworkProcess/cocoa/NetworkSessionCocoa.mm: (WebKit::NetworkSessionCocoa::NetworkSessionCocoa): * Shared/ResourceLoadStatisticsParameters.h: Added. (WebKit::ResourceLoadStatisticsParameters::encode const): (WebKit::ResourceLoadStatisticsParameters::decode): * UIProcess/WebProcessPool.cpp: (WebKit::WebProcessPool::ensureNetworkProcess): * UIProcess/WebsiteData/Cocoa/WebsiteDataStoreCocoa.mm: (WebKit::WebsiteDataStore::parameters): * WebKit.xcodeproj/project.pbxproj: Canonical link: https://commits.webkit.org/221847@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258269 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
with
234 additions
and 141 deletions.
- +28 −0 Source/WebKit/ChangeLog
- +1 −1 Source/WebKit/NetworkProcess/NetworkProcess.cpp
- +3 −3 Source/WebKit/NetworkProcess/NetworkSession.cpp
- +7 −77 Source/WebKit/NetworkProcess/NetworkSessionCreationParameters.cpp
- +3 −20 Source/WebKit/NetworkProcess/NetworkSessionCreationParameters.h
- +7 −7 Source/WebKit/NetworkProcess/cocoa/NetworkSessionCocoa.mm
- +138 −0 Source/WebKit/Shared/ResourceLoadStatisticsParameters.h
- +29 −22 Source/WebKit/UIProcess/WebProcessPool.cpp
- +16 −11 Source/WebKit/UIProcess/WebsiteData/Cocoa/WebsiteDataStoreCocoa.mm
- +2 −0 Source/WebKit/WebKit.xcodeproj/project.pbxproj
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.