[Webkit-unassigned] [Bug 132825] WinCairo buildfix after r168611

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon May 12 09:27:48 PDT 2014


https://bugs.webkit.org/show_bug.cgi?id=132825





--- Comment #3 from Csaba Osztrogonác <ossy at webkit.org>  2014-05-12 09:28:09 PST ---
(From update of attachment 231299)
View in context: https://bugs.webkit.org/attachment.cgi?id=231299&action=review

> Source/WebCore/platform/network/curl/CurlDownload.cpp:216
> -                callOnMainThread<CurlDownload*, CurlDownload*>(CurlDownload::downloadFinishedCallback, download);
> +                callOnMainThread(CurlDownload::downloadFinishedCallback, download);

I think we should use callOnMainThread(MainThreadTask((CurlDownload::downloadFinishedCallback, download)); here.

> Source/WebCore/platform/network/curl/CurlDownload.cpp:218
> -                callOnMainThread<CurlDownload*, CurlDownload*>(CurlDownload::downloadFailedCallback, download);
> +                callOnMainThread(CurlDownload::downloadFailedCallback, download);

ditto

> Source/WebCore/platform/network/curl/CurlDownload.cpp:403
> -            callOnMainThread<CurlDownload*, CurlDownload*>(receivedResponseCallback, this);
> +            callOnMainThread(receivedResponseCallback, this);

ditto

> Source/WebCore/platform/network/curl/CurlDownload.cpp:416
> -    callOnMainThread<CurlDownload*, CurlDownload*, int, int>(receivedDataCallback, this, size);
> +    callOnMainThread(receivedDataCallback, this, size);

ditto

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list