Changeset 248999 in webkit
- Timestamp:
- Aug 22, 2019, 2:40:25 AM (7 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
NetworkProcess/soup/NetworkProcessSoup.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r248974 r248999 1 2019-08-22 Claudio Saavedra <csaavedra@igalia.com> 2 3 [SOUP] NetworkProcessSoup does not initialize CacheOptions correctly 4 https://bugs.webkit.org/show_bug.cgi?id=200886 5 6 Reviewed by Philippe Normand. 7 8 r247567 wrongly initializes CacheOptions in a local variable that is never used 9 instead of using NetworkProcess's member variable, that is later used by the 10 NetworkSession to initialize the cache. 11 12 * NetworkProcess/soup/NetworkProcessSoup.cpp: 13 (WebKit::NetworkProcess::platformInitializeNetworkProcess): 14 1 15 2019-08-21 Tim Horton <timothy_horton@apple.com> 2 16 -
trunk/Source/WebKit/NetworkProcess/soup/NetworkProcessSoup.cpp
r248846 r248999 118 118 SoupNetworkSession::clearOldSoupCache(FileSystem::directoryName(m_diskCacheDirectory)); 119 119 120 OptionSet<NetworkCache::CacheOption> cacheOptions{ NetworkCache::CacheOption::RegisterNotify };120 m_cacheOptions = { NetworkCache::CacheOption::RegisterNotify }; 121 121 #if ENABLE(NETWORK_CACHE_SPECULATIVE_REVALIDATION) 122 122 if (parameters.shouldEnableNetworkCacheSpeculativeRevalidation) 123 cacheOptions.add(NetworkCache::CacheOption::SpeculativeRevalidation);123 m_cacheOptions.add(NetworkCache::CacheOption::SpeculativeRevalidation); 124 124 #endif 125 125
Note:
See TracChangeset
for help on using the changeset viewer.