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

  /external/chromium/net/http/
http_stream.h 5 // HttpStream is an interface for reading and writing data to an HttpStream that
8 // pipelining implementations. The HttpStream subtype is expected to manage the
9 // underlying transport appropriately. For example, a non-pipelined HttpStream
33 class HttpStream {
35 HttpStream() {}
36 virtual ~HttpStream() {}
47 // when available. Returns OK on success. The HttpStream takes ownership
64 // Provides access to HttpResponseInfo (owned by HttpStream).
96 virtual HttpStream* RenewStreamForAuth() = 0
    [all...]
  /external/chromium_org/net/http/
http_stream.h 5 // HttpStream provides an abstraction for a basic http streams, http pipelining
6 // implementations, and SPDY. The HttpStream subtype is expected to manage the
7 // underlying transport appropriately. For example, a non-pipelined HttpStream
24 class NET_EXPORT_PRIVATE HttpStream : public HttpStreamBase {
26 HttpStream() {}
27 virtual ~HttpStream() {}
37 virtual HttpStream* RenewStreamForAuth() = 0;
40 DISALLOW_COPY_AND_ASSIGN(HttpStream);

Completed in 214 milliseconds