Bug 167990

Summary: Remove most cases of #if ENABLE(CACHE_PARTITIONING)
Product: WebKit Reporter: Antti Koivisto <koivisto>
Component: Page LoadingAssignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal CC: beidson
Priority: P2    
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
patch
sam: review+
patch
none
patch none

Description Antti Koivisto 2017-02-08 08:14:47 PST
This is ifdef is all over the place.
Comment 1 Antti Koivisto 2017-02-08 08:26:17 PST
Created attachment 300901 [details]
patch
Comment 2 Sam Weinig 2017-02-08 09:00:35 PST
Comment on attachment 300901 [details]
patch

View in context: https://bugs.webkit.org/attachment.cgi?id=300901&action=review

I love this!  rs=me when you get it compiling.

> Source/WebCore/loader/FrameLoader.cpp:1204
>          request.setDomainForCachePartition(m_frame.tree().top().document()->securityOrigin().domainForCachePartition());

Should this be using topOrigin?

> Source/WebCore/loader/cache/MemoryCache.cpp:562
>      static NeverDestroyed<String> httpString("http");

This can't really be necessary now that we have ASCIILiteral, right?

> Source/WebCore/platform/network/ResourceRequestBase.cpp:665
> +#else
> +    return domain;
> +#endif

Is this the right decision? Maybe we should we just return emptyString() if there is no PUBLIC_SUFFIX_LIST support? Or maybe we should #error if you enable ENABLE(CACHE_PARTITIONING) without ENABLE(PUBLIC_SUFFIX_LIST)?

> Source/WebKit2/NetworkProcess/cache/NetworkCacheSpeculativeLoadManager.cpp:97
> +    
>  
>      revalidationRequest.makeUnconditional();

No need for this extra newline.
Comment 3 Antti Koivisto 2017-02-09 01:21:28 PST
Created attachment 301023 [details]
patch
Comment 4 Antti Koivisto 2017-02-09 02:25:23 PST
Created attachment 301026 [details]
patch
Comment 5 Antti Koivisto 2017-02-09 03:11:22 PST
https://trac.webkit.org/r211946