Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(279)

Unified Diff: net/http/http_pipelined_host_pool.h

Issue 8770035: Save pipelining capabilities for the most used hosts between sessions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/http/http_pipelined_host_pool.h
diff --git a/net/http/http_pipelined_host_pool.h b/net/http/http_pipelined_host_pool.h
index 3be0cb51e9eb4d56ebabc012c8efebd764b20bb7..41076ffc664853c3f5cfba5328a81e0acf1ef1b8 100644
--- a/net/http/http_pipelined_host_pool.h
+++ b/net/http/http_pipelined_host_pool.h
@@ -10,7 +10,6 @@
#include "base/basictypes.h"
#include "base/gtest_prod_util.h"
-#include "base/memory/mru_cache.h"
#include "base/memory/scoped_ptr.h"
#include "net/http/http_pipelined_host.h"
@@ -18,6 +17,7 @@ namespace net {
class HostPortPair;
class HttpPipelinedStream;
+class HttpServerProperties;
// Manages all of the pipelining state for specific host with active pipelined
// HTTP requests. Manages connection jobs, constructs pipelined streams, and
@@ -34,7 +34,8 @@ class NET_EXPORT_PRIVATE HttpPipelinedHostPool
};
HttpPipelinedHostPool(Delegate* delegate,
- HttpPipelinedHost::Factory* factory);
+ HttpPipelinedHost::Factory* factory,
+ HttpServerProperties* http_server_properties_);
virtual ~HttpPipelinedHostPool();
// Returns true if pipelining might work for |origin|. Generally, this returns
@@ -70,19 +71,15 @@ class NET_EXPORT_PRIVATE HttpPipelinedHostPool
HttpPipelinedHost::Capability capability) OVERRIDE;
private:
- typedef base::MRUCache<HostPortPair,
- HttpPipelinedHost::Capability> CapabilityMap;
typedef std::map<const HostPortPair, HttpPipelinedHost*> HostMap;
HttpPipelinedHost* GetPipelinedHost(const HostPortPair& origin,
bool create_if_not_found);
- HttpPipelinedHost::Capability GetHostCapability(const HostPortPair& origin);
-
Delegate* delegate_;
scoped_ptr<HttpPipelinedHost::Factory> factory_;
HostMap host_map_;
- CapabilityMap known_capability_map_;
+ HttpServerProperties* http_server_properties_;
DISALLOW_COPY_AND_ASSIGN(HttpPipelinedHostPool);
};

Powered by Google App Engine
This is Rietveld 408576698