diff options
Diffstat (limited to 'net/http/http_pipelined_host_impl.h')
-rw-r--r-- | net/http/http_pipelined_host_impl.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/http/http_pipelined_host_impl.h b/net/http/http_pipelined_host_impl.h index c1d745c..1286d69 100644 --- a/net/http/http_pipelined_host_impl.h +++ b/net/http/http_pipelined_host_impl.h @@ -15,6 +15,7 @@ #include "net/base/net_export.h" #include "net/http/http_pipelined_connection.h" #include "net/http/http_pipelined_host.h" +#include "net/http/http_pipelined_host_capability.h" namespace net { @@ -34,7 +35,7 @@ class NET_EXPORT_PRIVATE HttpPipelinedHostImpl HttpPipelinedHostImpl(HttpPipelinedHost::Delegate* delegate, const HostPortPair& origin, HttpPipelinedConnection::Factory* factory, - Capability capability); + HttpPipelinedHostCapability capability); virtual ~HttpPipelinedHostImpl(); // HttpPipelinedHost interface @@ -98,7 +99,7 @@ class NET_EXPORT_PRIVATE HttpPipelinedHostImpl const HostPortPair origin_; PipelineInfoMap pipelines_; scoped_ptr<HttpPipelinedConnection::Factory> factory_; - Capability capability_; + HttpPipelinedHostCapability capability_; DISALLOW_COPY_AND_ASSIGN(HttpPipelinedHostImpl); }; |