Bug 39182

Summary: FrameLoader: factor applyUserAgent(), addExtraFieldsToRequest(), and addHTTPOriginIfNeeded() out of the FrameLoader class
Product: WebKit Reporter: Chris Jerdonek <cjerdonek>
Component: WebCore Misc.Assignee: Chris Jerdonek <cjerdonek>
Status: RESOLVED WONTFIX    
Severity: Normal CC: abarth, cjerdonek
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: All   
OS: All   
Bug Depends on:    
Bug Blocks: 29947    

Description Chris Jerdonek 2010-05-16 13:11:13 PDT
It looks like none of these methods that add information to a ResourceRequest (applyUserAgent, addExtraFieldsToRequest, and addHTTPOriginIfNeeded) require access to private FrameLoader data, so we should be able to make all of them non-member, non-friend.  Teasing these out will increase encapsulation a bit more.
Comment 1 Adam Barth 2010-05-16 17:38:37 PDT
Hum...  It's not 100% clear to me where we'd put these methods.  What did you have in mind?
Comment 2 Chris Jerdonek 2010-05-16 17:47:14 PDT
(In reply to comment #1)
> Hum...  It's not 100% clear to me where we'd put these methods.  What did you have in mind?

I had in mind declaring applyUserAgent() and addHTTPOriginIfNeeded() in FrameLoader.h outside of the class (suitably renamed).  addExtraFieldsToRequest() can be declared static (file-scope) in the .cpp file.
Comment 3 Adam Barth 2010-05-16 18:01:02 PDT
Generally, we prefer keeping methods in the class, except for some kinds of utility methods.

One thing that might make sense is putting these methods on some sort of request object because they operate on the request.  You'll have to look to see which layer of request makes the most sense.  ResourceRequest might be slightly too low-level because the platform directory isn't allowed to depend on anything else in WebCore...
Comment 4 Adam Barth 2011-06-12 02:30:39 PDT
Marking WONTFIX for now.  We can revisit this later if we still think this is a good idea.