Bug 138987

Summary: Add cancelable version of willSendRequest
Product: WebKit Reporter: Vicki Pfau <jeffrey+webkit>
Component: Page LoadingAssignee: Vicki Pfau <jeffrey+webkit>
Status: RESOLVED FIXED    
Severity: Normal CC: commit-queue, japhet, psolanki
Priority: P2 Keywords: InRadar
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Bug Depends on:    
Bug Blocks: 138675    
Attachments:
Description Flags
Patch
none
Patch andersca: review+

Vicki Pfau
Reported 2014-11-21 15:26:41 PST
In some cases, we need a way to asynchronously cancel pending loads. Patch incoming.
Attachments
Patch (4.68 KB, patch)
2014-11-21 15:31 PST, Vicki Pfau
no flags
Patch (4.66 KB, patch)
2014-11-21 16:27 PST, Vicki Pfau
andersca: review+
Vicki Pfau
Comment 1 2014-11-21 15:31:04 PST
Anders Carlsson
Comment 2 2014-11-21 15:37:40 PST
Comment on attachment 242083 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=242083&action=review > Source/WebCore/loader/ResourceLoader.cpp:289 > +void ResourceLoader::maybeSendRequest(ResourceRequest& request, const ResourceResponse& redirectResponse, std::function<void(ResourceRequest&, bool)> callback) Weren't you going to make ResourceRequest be null instead of having a boolean flag?
Vicki Pfau
Comment 3 2014-11-21 15:39:11 PST
(In reply to comment #2) > Comment on attachment 242083 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=242083&action=review > > > Source/WebCore/loader/ResourceLoader.cpp:289 > > +void ResourceLoader::maybeSendRequest(ResourceRequest& request, const ResourceResponse& redirectResponse, std::function<void(ResourceRequest&, bool)> callback) > > Weren't you going to make ResourceRequest be null instead of having a > boolean flag? Yes...I think that version of the patch must have gotten lost on my other computer. Will fix now.
Vicki Pfau
Comment 4 2014-11-21 16:27:01 PST
Anders Carlsson
Comment 5 2014-12-01 17:25:12 PST
Comment on attachment 242092 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=242092&action=review > Source/WebCore/loader/ResourceLoader.h:96 > + virtual void maybeSendRequest(ResourceRequest&, const ResourceResponse& redirectResponse, std::function<void(ResourceRequest&)> callback); I think you should either call this willSendRequest or willSendRequestAsync. It should also take a ResourceRequest&&.
Vicki Pfau
Comment 6 2014-12-01 17:37:12 PST
(In reply to comment #5) > Comment on attachment 242092 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=242092&action=review > > > Source/WebCore/loader/ResourceLoader.h:96 > > + virtual void maybeSendRequest(ResourceRequest&, const ResourceResponse& redirectResponse, std::function<void(ResourceRequest&)> callback); > > I think you should either call this willSendRequest or willSendRequestAsync. > It should also take a ResourceRequest&&. I wanted to call it willSendRequestAsync, but due to C++ overloading rules and the fact that there's already a function called that that's protected, with a different signature, it didn't let me. I'll change the signature though.
Vicki Pfau
Comment 7 2014-12-01 18:54:08 PST
Vicki Pfau
Comment 8 2014-12-01 20:28:02 PST
Note You need to log in before you can comment on or make changes to this bug.