RESOLVED FIXED 177424
Remove ENABLE_NETWORK_CACHE
https://bugs.webkit.org/show_bug.cgi?id=177424
Summary Remove ENABLE_NETWORK_CACHE
Yoshiaki Jitsukawa
Reported 2017-09-25 00:16:36 PDT
https://trac.webkit.org/changeset/221942/webkit introduced NetworkCache::Key and other things in NetworkCache namespace into WebKit/NetworkProcess/cache/CacheStorageEngineCache, but NetworkCache::* is not defined unless ENABLE(NETWORK_CACHE) is true and this causes WebKit to fail to build. The definition in WebKit/config.h is #ifndef ENABLE_NETWORK_CACHE #if PLATFORM(COCOA) || USE(SOUP) #define ENABLE_NETWORK_CACHE 1 #else #define ENABLE_NETWORK_CACHE 0 #endif #endif and it seems like all webkit(2) port enable it today. Should we support the case ENABLE_NETWORK_CACHE==0 or should all webkit(2) port (including upcoming windows one) enable network cache?
Attachments
Patch (46.26 KB, patch)
2017-10-10 14:22 PDT, Don Olmstead
no flags
Patch (46.52 KB, patch)
2017-10-10 17:36 PDT, Don Olmstead
no flags
Antti Koivisto
Comment 1 2017-09-25 09:52:29 PDT
We should just remove ENABLE_NETWORK_CACHE define and always compile in the code. Cache can still be disabled dynamically.
Yoshiaki Jitsukawa
Comment 2 2017-09-25 14:54:53 PDT
(In reply to Antti Koivisto from comment #1) > We should just remove ENABLE_NETWORK_CACHE define and always compile in the > code. Cache can still be disabled dynamically. I understand. Thank you for the clarification :)
Don Olmstead
Comment 3 2017-10-10 14:22:00 PDT
Antti Koivisto
Comment 4 2017-10-10 15:02:13 PDT
Comment on attachment 323349 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=323349&action=review > Source/WebKit/NetworkProcess/NetworkResourceLoader.cpp:320 > bool shouldSendDidReceiveResponse = true; This line can be removed > Source/WebKit/NetworkProcess/NetworkResourceLoader.cpp:334 > shouldSendDidReceiveResponse = !m_cacheEntryForValidation; ... and this turned into bool shouldSendDidReceiveResponse = !m_cacheEntryForValidation > Source/WebKit/NetworkProcess/NetworkResourceLoader.cpp:-362 > // For main resources, the web process is responsible for sending back a NetworkResourceLoader::ContinueDidReceiveResponse message. > bool shouldContinueDidReceiveResponse = !shouldWaitContinueDidReceiveResponse; > -#if ENABLE(NETWORK_CACHE) > shouldContinueDidReceiveResponse = shouldContinueDidReceiveResponse || m_cacheEntryForValidation; > -#endif This can be reduced to bool shouldContinueDidReceiveResponse = !shouldWaitContinueDidReceiveResponse || m_cacheEntryForValidation;
Don Olmstead
Comment 5 2017-10-10 17:36:32 PDT
Created attachment 323365 [details] Patch Fixing review comments
Antti Koivisto
Comment 6 2017-10-11 00:01:59 PDT
Comment on attachment 323365 [details] Patch r=me
WebKit Commit Bot
Comment 7 2017-10-11 08:53:25 PDT
Comment on attachment 323365 [details] Patch Clearing flags on attachment: 323365 Committed r223179: <https://trac.webkit.org/changeset/223179>
WebKit Commit Bot
Comment 8 2017-10-11 08:53:27 PDT
All reviewed patches have been landed. Closing bug.
Radar WebKit Bug Importer
Comment 9 2017-10-11 08:54:09 PDT
Note You need to log in before you can comment on or make changes to this bug.