[Webkit-unassigned] [Bug 58222] [GTK] Implement layoutTestController.dumpResourceResponseMIMETypes

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Apr 13 09:32:17 PDT 2011


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





--- Comment #8 from Martin Robinson <mrobinson at webkit.org>  2011-04-13 09:32:17 PST ---
(In reply to comment #7)
> (In reply to comment #6)
> > Wouldn't it be simpler to just add the necessary API points that describe resource loading?
> 
> Hum what are those?
> That patch is highly inspired by the same feature present in the Qt port.

Sergio will have more information, but essentially we just need to implement a few signals that describe resource loading. I sent a mail to the list about this some time ago, but essentially what's missing for resource loading signals is:

- dispatchWillSendRequest
   (+) WebKitWebView::resource-request-starting(Frame, Resource,
Request, Response)
- dispatchDidReceiveResponse
   (+) WebKitWebView::resource-response-received(Frame, Resource, Response)
- dispatchDidFinishLoading
   (+) WebKitWebView::resource-loading-finished(Frame, Resource)
- dispatchDidReceiveContentLength
   (+) WebKitWebView::resource-content-length-received(Frame, Resource, Length)
- dispatchDidFailLoading
   (+) WebKitWebView::resource-load-failed(Frame, Resource, Error)
- dispatchDidLoadResourceFromMemoryCache
   (+) WebKitWebView::resource-loaded-from-memory-cache(Frame, Resource, Error)
- willCacheResponse
   (+) WebKitWebView::resource-will-be-cached(Frame, Resource)

To implement this feature we would not need all of these either.

-- 
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