[webkit-reviews] review denied: [Bug 132643] Fix build errors for BlobDataItem after r168391 : [Attachment 230974] Patch

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed May 7 00:01:37 PDT 2014


Carlos Garcia Campos <cgarcia at igalia.com> has denied Praveen Jadhav
<praveen.j at samsung.com>'s request for review:
Bug 132643: Fix build errors for BlobDataItem after r168391
https://bugs.webkit.org/show_bug.cgi?id=132643

Attachment 230974: Patch
https://bugs.webkit.org/attachment.cgi?id=230974&action=review

------- Additional Comments from Carlos Garcia Campos <cgarcia at igalia.com>
View in context: https://bugs.webkit.org/attachment.cgi?id=230974&action=review


> Source/WebCore/ChangeLog:6
> +	   Build error fix.

This doesn't provide any useful information, since the summary already says Fix
build errors ...

> Source/WebCore/ChangeLog:10
> +	   No new tests. No change in behaviour.

You should remove this, commit-queue will refuse to commit this if this line is
present in the changelog.

> Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp:783
>	   soup_message_body_append(message->request_body,
SOUP_MEMORY_TEMPORARY,
> -				    blobItem.data->data() + blobItem.offset,
blobItem.length);
> +				    blobItem.data->data() + blobItem.offset(),
blobItem.length());

Even if this was already using the old coding style, we can take advantage we
are changing it now to use the new coding style, please fix it.

> Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp:794
> -				blobItem.path,
> -				blobItem.offset,
> -				blobItem.length == BlobDataItem::toEndOfFile ?
0 : blobItem.length,
> +				blobItem.file->path(),
> +				blobItem.offset(),
> +				blobItem.length() == BlobDataItem::toEndOfFile
? 0 : blobItem.length(),

Ditto.


More information about the webkit-reviews mailing list