Home | History | Annotate | Download | only in glue

Lines Matching full:response

27 // The list of response headers that we do not copy from the original
28 // response when generating a WebURLResponse for a MIME payload.
40 HeaderCopier(WebURLResponse* response)
41 : response_(response) {
60 const WebURLResponse& response,
64 original_response_(response),
252 WebURLResponse response(original_response_.url());
253 response.setMIMEType(WebString::fromUTF8(mime_type));
254 response.setTextEncodingName(WebString::fromUTF8(charset));
256 HeaderCopier copier(&response);
263 response.setHTTPHeaderField(WebString::fromUTF8(name),
268 // the history database, we want to keep track of whether the response
271 response.setIsMultipartPayload(has_sent_first_response_);
273 // Send the response!
275 client_->didReceiveResponse(loader_, response);
299 const WebURLResponse& response,
302 response.httpHeaderField(WebString::fromUTF8("Content-Type")).utf8();
319 // The byte range response can have quoted boundary strings. This is legal
327 const WebURLResponse& response,
332 std::string content_range = response.httpHeaderField("Content-Range").utf8();
334 content_range = response.httpHeaderField("Range").utf8();
338 DLOG(WARNING) << "Failed to read content range from response.";