Home | History | Annotate | Download | only in media

Lines Matching refs:request

93     // TODO(hclam): server may not support range request so |offset_| may not
98 // Increment the reference count right before we start the request. This
99 // reference will be release when this request has ended.
102 // Prepare the request.
103 WebURLRequest request(url_);
104 request.setTargetType(WebURLRequest::TargetIsMedia);
108 request.setHTTPHeaderField(WebString::fromUTF8("Range"),
113 frame->setReferrerForRequest(request, WebKit::WebURL());
120 url_loader_->loadAsynchronously(request, this);
183 // If we can serve the request now, do the actual read.
195 // If we expected the read request to be fulfilled later, returns
245 // Set the url in the request to an invalid value (empty url).
255 // Set the url in the request to an invalid value (empty url).
283 // received a response from HTTP/HTTPS protocol or the request was
284 // successful (in particular range request). So we only verify the partial
305 // We didn't request a range but server didn't reply with "200 OK".
315 // For any protocol other than HTTP and HTTPS, assume range request is
349 // If there is an active read request, try to fulfill the request.
397 // If there is a pending read but the request has ended, returns with what
400 // Make sure we have a valid buffer before we satisfy a read request.
410 // There must not be any outstanding read request.
431 // If there is a pending read but the request failed, return with the
499 // We have an outstanding read request, and we have not buffered enough
500 // yet to fulfill the request; disable defer to get more data.
540 // If the request has completed, then just returns with what we have now.
544 // If the resource request is still active, make sure the whole requested
562 // The resource request has completed, there's no way we can fulfill the
563 // read request.
604 // we will never make such a request that it is ok to leave it unimplemented.