Changeset 251222 in webkit


Ignore:
Timestamp:
Oct 16, 2019 7:42:29 PM (4 years ago)
Author:
emilio
Message:

Pass network cache directory in WebsiteDataStore::parameters() for non-Cocoa platforms.
https://bugs.webkit.org/show_bug.cgi?id=203043

This was causing various errors in the network process that were
visible in debug builds.

Reviewed by Alex Christensen.

  • UIProcess/WebsiteData/WebsiteDataStore.cpp:

(WebKit::WebsiteDataStore::parameters):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r251220 r251222  
     12019-10-16  Emilio Cobos Álvarez  <emilio@crisal.io>
     2
     3        Pass network cache directory in WebsiteDataStore::parameters() for non-Cocoa platforms.
     4        https://bugs.webkit.org/show_bug.cgi?id=203043
     5
     6        This was causing various errors in the network process that were
     7        visible in debug builds.
     8
     9        Reviewed by Alex Christensen.
     10
     11        * UIProcess/WebsiteData/WebsiteDataStore.cpp:
     12        (WebKit::WebsiteDataStore::parameters):
     13
    1142019-10-16  Chris Dumez  <cdumez@apple.com>
    215
  • trunk/Source/WebKit/UIProcess/WebsiteData/WebsiteDataStore.cpp

    r251213 r251222  
    20842084    parameters.perOriginStorageQuota = perOriginStorageQuota();
    20852085    parameters.perThirdPartyOriginStorageQuota = perThirdPartyOriginStorageQuota();
     2086    parameters.networkSessionParameters.networkCacheDirectory = resolvedNetworkCacheDirectory();
    20862087
    20872088    platformSetNetworkParameters(parameters);
Note: See TracChangeset for help on using the changeset viewer.