Bug 173195

Summary: [Curl] Use SynchronousLoaderClient for platformLoadResourceSynchronously
Product: WebKit Reporter: Basuke Suzuki <Basuke.Suzuki>
Component: WebCore Misc.Assignee: Basuke Suzuki <Basuke.Suzuki>
Status: RESOLVED FIXED    
Severity: Normal CC: achristensen, Basuke.Suzuki, bfulgham, buildbot, commit-queue, don.olmstead, pvollan
Priority: P2    
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
Bug Depends on:    
Bug Blocks: 117300    
Attachments:
Description Flags
Patch
none
Patch none

Description Basuke Suzuki 2017-06-09 17:18:21 PDT
Curl implementation uses adhoc loader client to load resource synchronously, but there's no reason not using SynchronousLoaderClient as other port do.
Comment 1 Basuke Suzuki 2017-06-12 11:54:46 PDT
Created attachment 312681 [details]
Patch
Comment 2 Build Bot 2017-06-12 11:57:07 PDT
Attachment 312681 [details] did not pass style-queue:


ERROR: Source/WebCore/platform/network/curl/SynchronousLoaderClientCurl.cpp:30:  You should not add a blank line before implementation file's own header.  [build/include_order] [4]
Total errors found: 1 in 3 files


If any of these errors are false positives, please file a bug against check-webkit-style.
Comment 3 Alex Christensen 2017-06-12 12:05:24 PDT
Comment on attachment 312681 [details]
Patch

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

Seems like a step in the right direction to match other ports.  Could you use Tools/Scripts/prepare-ChangeLog to add a ChangeLog entry?

> Source/WebCore/platform/network/curl/ResourceHandleCurl.cpp:130
> +    SynchronousLoaderClient client;
> +    RefPtr<ResourceHandle> handle = adoptRef(new ResourceHandle(context, request, &client, false, false));
> +    if (!handle)
> +        return;

null check isn't needed after new in WebKit.  In fact, you could do Ref<ResourceHandle> handle = adoptRef(*new ResourceHandle(...))
Comment 4 Basuke Suzuki 2017-06-12 12:11:54 PDT
Yeah, I'm working on it. Still figuring out which tool is right for what I want to.
Comment 5 Basuke Suzuki 2017-06-12 12:41:52 PDT
Created attachment 312685 [details]
Patch
Comment 6 WebKit Commit Bot 2017-06-12 15:09:59 PDT
Comment on attachment 312685 [details]
Patch

Clearing flags on attachment: 312685

Committed r218142: <http://trac.webkit.org/changeset/218142>
Comment 7 WebKit Commit Bot 2017-06-12 15:10:01 PDT
All reviewed patches have been landed.  Closing bug.