Comment #1 on issue 18677 by [email protected]: Warnings in ResourceDispatcher about receiving nonexistant or finished request when doing scrubing in <video> http://code.google.com/p/chromium/issues/detail?id=18677
This is related to how resource loading is done for <video>, there are multiple objects involved in this process: Here's what happens what there's a lot of warnings: Renderer request 0, (0, -1) = request the full range of media file Renderer request 1, (1, 1) = request a byte to see if server supports range request Browser replies 0 with header Browser replies 1 with header Browser replies 1 with data (1 byte) Browser replies 1 with request done Renderer receiving header of request 1 cancels the request (because we don't care about the data) Renderer deletes the handle for request 1 Browser receiving cancel request for 1 gives a warning: [11064:5624:193065656:WARNING:resource_dispatcher_host.cc(1088)] Canceling a request that wasn't found This is OK, because nothing is wrong actally. Renderer request 2, (eof - 32k, -1) = Renderer wants the index of the media file at the end Renderer cancels request 0 Renderer deletes request 0 Browser replies 0 with data then you got warning [5320:2140:169881781:WARNING:resource_dispatcher.cc(277)] Got response for a nonexistant or finished request Browser receives cancel request for 0 This is also OK because there's nothing wrong here too. -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings --~--~---------~--~----~------------~-------~--~----~ Automated mail from issue updates at http://crbug.com/ Subscription options: http://groups.google.com/group/chromium-bugs -~----------~----~----~----~------~----~------~--~---
