Bug 109002

Summary: [BlackBerry] Export mimeType in NetworkJob
Product: WebKit Reporter: Mary Wu <mawu>
Component: PlatformAssignee: Mary Wu <mawu>
Status: RESOLVED FIXED    
Severity: Normal CC: lquinn, mifenton, rwlbuis, tonikitoo, webkit.review.bot, yong.li.webkit
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch
none
Patch
none
Patch none

Description Mary Wu 2013-02-05 20:13:42 PST
NetworkJob will analysize resource mimetype and set it to resourceResponse, we will pass it on to be used by other Streams like download stream.
Comment 1 Mary Wu 2013-02-05 20:23:04 PST
Created attachment 186750 [details]
Patch
Comment 2 Mary Wu 2013-02-06 02:48:58 PST
Created attachment 186806 [details]
Patch
Comment 3 Yong Li 2013-02-06 06:51:39 PST
Comment on attachment 186806 [details]
Patch

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

> Source/WebCore/platform/network/blackberry/NetworkJob.cpp:958
> +const BlackBerry::Platform::String NetworkJob::mimeType() const
> +{
> +    String type = m_response.mimeType();
> +
> +    return type.isEmpty() ? "" : type.utf8().data();
> +}

Why do we have to use utf8()? This always creates a new CString
Comment 4 Mary Wu 2013-02-06 18:44:31 PST
(In reply to comment #3)
> (From update of attachment 186806 [details])
> View in context: https://bugs.webkit.org/attachment.cgi?id=186806&action=review
> 
> > Source/WebCore/platform/network/blackberry/NetworkJob.cpp:958
> > +const BlackBerry::Platform::String NetworkJob::mimeType() const
> > +{
> > +    String type = m_response.mimeType();
> > +
> > +    return type.isEmpty() ? "" : type.utf8().data();
> > +}
> 
> Why do we have to use utf8()? This always creates a new CString

nice, looks we already implemented that in StringBlackBerry. thanks
Comment 5 Mary Wu 2013-02-06 18:50:25 PST
Created attachment 186977 [details]
Patch
Comment 6 WebKit Review Bot 2013-02-07 07:07:02 PST
Comment on attachment 186977 [details]
Patch

Clearing flags on attachment: 186977

Committed r142115: <http://trac.webkit.org/changeset/142115>
Comment 7 WebKit Review Bot 2013-02-07 07:07:07 PST
All reviewed patches have been landed.  Closing bug.