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 25 // HttpResponseHeaders: parses and holds HTTP response headers.
26 class HttpResponseHeaders
27 : public base::RefCountedThreadSafe<HttpResponseHeaders> {
38 // HttpResponseHeaders does not perform any encoding changes on the input.
40 explicit HttpResponseHeaders(const std::string& raw_headers);
45 HttpResponseHeaders(const Pickle& pickle, void** pickle_iter);
62 void Update(const HttpResponseHeaders& new_headers);
242 friend class base::RefCountedThreadSafe<HttpResponseHeaders>;
246 HttpResponseHeaders() {}
247 ~HttpResponseHeaders() {}
    [all...]
http_response_headers.cc 91 HttpResponseHeaders::HttpResponseHeaders(const std::string& raw_input)
96 HttpResponseHeaders::HttpResponseHeaders(const Pickle& pickle, void** iter)
103 void HttpResponseHeaders::Persist(Pickle* pickle, PersistOptions options) {
159 void HttpResponseHeaders::Update(const HttpResponseHeaders& new_headers) {
203 void HttpResponseHeaders::MergeWithHeaders(const std::string& raw_headers,
232 void HttpResponseHeaders::RemoveHeader(const std::string& name) {
244 void HttpResponseHeaders::AddHeader(const std::string& header)
    [all...]

Completed in 424 milliseconds