| Index: net/http/http_stream_factory_impl.h
|
| diff --git a/net/http/http_stream_factory_impl.h b/net/http/http_stream_factory_impl.h
|
| index 653c2e1cc04752914471f04cf4f6e08e51208ff5..103e2c6d09e69cfaeaa94e639c1f760bf9e2b325 100644
|
| --- a/net/http/http_stream_factory_impl.h
|
| +++ b/net/http/http_stream_factory_impl.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include <map>
|
| #include <set>
|
| +#include <vector>
|
|
|
| #include "base/memory/ref_counted.h"
|
| #include "net/base/host_port_pair.h"
|
| @@ -54,8 +55,10 @@ class NET_EXPORT_PRIVATE HttpStreamFactoryImpl :
|
| class Job;
|
|
|
| typedef std::set<Request*> RequestSet;
|
| + typedef std::vector<Request*> RequestVector;
|
| typedef std::map<HostPortProxyPair, RequestSet> SpdySessionRequestMap;
|
| - typedef std::map<HttpPipelinedHost::Key, RequestSet> HttpPipeliningRequestMap;
|
| + typedef std::map<HttpPipelinedHost::Key,
|
| + RequestVector> HttpPipeliningRequestMap;
|
|
|
| bool GetAlternateProtocolRequestFor(const GURL& original_url,
|
| GURL* alternate_url) const;
|
|
|