Bug 51916

Summary: Merge cf and mac header files with same name
Product: WebKit Reporter: Pratik Solanki <psolanki>
Component: Page LoadingAssignee: Pratik Solanki <psolanki>
Status: RESOLVED FIXED    
Severity: Normal CC: psolanki
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: PC   
OS: OS X 10.5   
Bug Depends on:    
Bug Blocks: 51836    
Attachments:
Description Flags
Patch darin: review+

Pratik Solanki
Reported 2011-01-04 23:16:29 PST
We have header files with the same name and mostly identical code in mac and cf directories e.g. WebCore/platform/network/cf/ResourceRequest.h WebCore/platform/network/mac/ResourceRequest.h We can merge the two and use #if USE(CFNETWORK) to separate out the code now that all the cf files have been added to the Xcode project in bug 51850.
Attachments
Patch (35.15 KB, patch)
2011-01-04 23:33 PST, Pratik Solanki
darin: review+
Pratik Solanki
Comment 1 2011-01-04 23:33:46 PST
Darin Adler
Comment 2 2011-01-05 08:09:45 PST
Comment on attachment 77975 [details] Patch It seems we could cut down the #ifs even further with some typedefs.
Pratik Solanki
Comment 3 2011-01-05 11:15:33 PST
(In reply to comment #2) > (From update of attachment 77975 [details]) > It seems we could cut down the #ifs even further with some typedefs. True. I tried it and it was easy to do for the ResourceError class, however for ResourceRequest and ResourceResponse we would also have to merge the member field names from m_nsURLRequest/m_cfURLRequest to m_urlRequest and refactor the code. That's turning out to be a much bigger patch. I'll do that separately from this one. Thanks for the review.
Pratik Solanki
Comment 4 2011-01-05 13:56:46 PST
Note You need to log in before you can comment on or make changes to this bug.