Summary: | Add a place for common HTTP Header values | ||||||||
---|---|---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | youenn fablet <youennf> | ||||||
Component: | WebCore Misc. | Assignee: | youenn fablet <youennf> | ||||||
Status: | RESOLVED FIXED | ||||||||
Severity: | Normal | CC: | achristensen, commit-queue, darin | ||||||
Priority: | P2 | ||||||||
Version: | WebKit Nightly Build | ||||||||
Hardware: | Unspecified | ||||||||
OS: | Unspecified | ||||||||
Attachments: |
|
Description
youenn fablet
2016-10-06 01:35:54 PDT
Created attachment 290796 [details]
Patch
Comment on attachment 290796 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=290796&action=review > Source/WebCore/ChangeLog:3 > + Add a place for usual HTTP Header values usual -> common? Created attachment 290896 [details]
Patch for landing
Thanks for the review.
> > Source/WebCore/ChangeLog:3
> > + Add a place for usual HTTP Header values
>
> usual -> common?
Done
Comment on attachment 290896 [details] Patch for landing Clearing flags on attachment: 290896 Committed r206901: <http://trac.webkit.org/changeset/206901> All reviewed patches have been landed. Closing bug. Comment on attachment 290896 [details] Patch for landing View in context: https://bugs.webkit.org/attachment.cgi?id=290896&action=review > Source/WebCore/platform/network/HTTPHeaderValues.h:31 > +struct HTTPHeaderValues { What is the benefit to using a struct instead of a namespace here? > Source/WebCore/platform/network/HTTPHeaderValues.h:33 > + static const String& TextPlainContentType(); > + static const String& FormURLEncodedContentType(); This doesn’t match WebKit coding style. Function names should start with a lower case letter. |