Changeset 225171 in webkit


Ignore:
Timestamp:
Nov 27, 2017 8:30:58 AM (6 years ago)
Author:
Carlos Garcia Campos
Message:

REGRESSION(r223073): disk cache directory is no longer copied in ProcessPoolConfiguration::copy()
https://bugs.webkit.org/show_bug.cgi?id=180031

Reviewed by Youenn Fablet.

This has caused GTK/WPE test /webkit2/WebKitWebsiteData/configuration to fail, and the wrong directory is used
by the network process. I think it was removed by mistake in r223073.

  • UIProcess/API/APIProcessPoolConfiguration.cpp:

(API::ProcessPoolConfiguration::copy): Copy m_diskCacheDirectory too.

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r225167 r225171  
     12017-11-27  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        REGRESSION(r223073): disk cache directory is no longer copied in ProcessPoolConfiguration::copy()
     4        https://bugs.webkit.org/show_bug.cgi?id=180031
     5
     6        Reviewed by Youenn Fablet.
     7
     8        This has caused GTK/WPE test /webkit2/WebKitWebsiteData/configuration to fail, and the wrong directory is used
     9        by the network process. I think it was removed by mistake in r223073.
     10
     11        * UIProcess/API/APIProcessPoolConfiguration.cpp:
     12        (API::ProcessPoolConfiguration::copy): Copy m_diskCacheDirectory too.
     13
    1142017-11-27  Adrian Perez de Castro  <aperez@igalia.com>
    215
  • trunk/Source/WebKit/UIProcess/API/APIProcessPoolConfiguration.cpp

    r223791 r225171  
    100100    copy->m_maximumProcessCount = this->m_maximumProcessCount;
    101101    copy->m_cacheModel = this->m_cacheModel;
     102    copy->m_diskCacheDirectory = this->m_diskCacheDirectory;
    102103    copy->m_diskCacheSpeculativeValidationEnabled = this->m_diskCacheSpeculativeValidationEnabled;
    103104    copy->m_diskCacheSizeOverride = this->m_diskCacheSizeOverride;
Note: See TracChangeset for help on using the changeset viewer.