| Index: net/http/http_pipelined_host_pool.cc
|
| diff --git a/net/http/http_pipelined_host_pool.cc b/net/http/http_pipelined_host_pool.cc
|
| index 7b00e7eeeae643502776a447f19eecb6cb018bea..b8fec2a791825c0c36602d7f3790af08e1e6cca6 100644
|
| --- a/net/http/http_pipelined_host_pool.cc
|
| +++ b/net/http/http_pipelined_host_pool.cc
|
| @@ -12,9 +12,6 @@
|
| #include "net/http/http_pipelined_host_impl.h"
|
| #include "net/http/http_server_properties.h"
|
|
|
| -using base::ListValue;
|
| -using base::Value;
|
| -
|
| namespace net {
|
|
|
| class HttpPipelinedHostImplFactory : public HttpPipelinedHost::Factory {
|
| @@ -135,11 +132,11 @@ void HttpPipelinedHostPool::OnHostDeterminedCapability(
|
| capability);
|
| }
|
|
|
| -Value* HttpPipelinedHostPool::PipelineInfoToValue() const {
|
| - ListValue* list = new ListValue();
|
| +base::Value* HttpPipelinedHostPool::PipelineInfoToValue() const {
|
| + base::ListValue* list = new base::ListValue();
|
| for (HostMap::const_iterator it = host_map_.begin();
|
| it != host_map_.end(); ++it) {
|
| - Value* value = it->second->PipelineInfoToValue();
|
| + base::Value* value = it->second->PipelineInfoToValue();
|
| list->Append(value);
|
| }
|
| return list;
|
|
|