Bug 80652

Summary: Fix the build of WebKit with WTFURL following the removal of ForwardingHeaders/wtf
Product: WebKit Reporter: Benjamin Poulain <benjamin>
Component: WebCore Misc.Assignee: Benjamin Poulain <benjamin>
Status: RESOLVED FIXED    
Severity: Normal CC: abarth, eric, webkit.review.bot
Priority: P2 Keywords: EasyFix
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch none

Description Benjamin Poulain 2012-03-08 16:07:19 PST
WebKit does not compile with WTFURL. Just fix the headers.
Comment 1 Benjamin Poulain 2012-03-08 16:12:25 PST
Created attachment 130932 [details]
Patch
Comment 2 Eric Seidel (no email) 2012-03-08 20:49:10 PST
Comment on attachment 130932 [details]
Patch

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

> Source/JavaScriptCore/wtf/url/api/ParsedURL.h:32
> +#include <wtf/url/src/URLSegments.h>

I guess src/ is public. :)
Comment 3 WebKit Review Bot 2012-03-08 21:52:34 PST
Comment on attachment 130932 [details]
Patch

Clearing flags on attachment: 130932

Committed r110261: <http://trac.webkit.org/changeset/110261>
Comment 4 WebKit Review Bot 2012-03-08 21:52:39 PST
All reviewed patches have been landed.  Closing bug.
Comment 5 Benjamin Poulain 2012-03-08 21:52:52 PST
> I guess src/ is public. :)

Yep, everything is in there.

API is using other parts of WTF. The src part is independent so you have a chance to adopt if for Chromium.

Thanks for the review.