HomeSort by relevance Sort by last modified time
    Searched defs:HttpResponseHeaders (Results 1 - 2 of 2) sorted by null

  /external/chromium/net/http/
http_response_headers.h 27 // HttpResponseHeaders: parses and holds HTTP response headers.
28 class NET_EXPORT HttpResponseHeaders
29 : public base::RefCountedThreadSafe<HttpResponseHeaders> {
50 // HttpResponseHeaders does not perform any encoding changes on the input.
52 explicit HttpResponseHeaders(const std::string& raw_headers);
57 HttpResponseHeaders(const Pickle& pickle, void** pickle_iter);
64 void Update(const HttpResponseHeaders& new_headers);
250 friend class base::RefCountedThreadSafe<HttpResponseHeaders>;
258 HttpResponseHeaders();
259 ~HttpResponseHeaders();
    [all...]
http_response_headers.cc 119 struct HttpResponseHeaders::ParsedHeader {
132 HttpResponseHeaders::HttpResponseHeaders(const std::string& raw_input)
154 HttpResponseHeaders::HttpResponseHeaders(const Pickle& pickle, void** iter)
161 void HttpResponseHeaders::Persist(Pickle* pickle, PersistOptions options) {
217 void HttpResponseHeaders::Update(const HttpResponseHeaders& new_headers) {
261 void HttpResponseHeaders::MergeWithHeaders(const std::string& raw_headers,
290 void HttpResponseHeaders::RemoveHeader(const std::string& name)
    [all...]

Completed in 23 milliseconds