summaryrefslogtreecommitdiffstats
path: root/net/http/http_pipelined_host_pool.cc
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-13 22:50:27 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-13 22:50:27 +0000
commitea5ef4c89bd17065f32e1f294d8b922a0735fd25 (patch)
tree530a4633c162b39a7149714d83b34a24ef1220e2 /net/http/http_pipelined_host_pool.cc
parentabf7641841f0ade77b8339e3f1368c9f3ff711bd (diff)
downloadchromium_src-ea5ef4c89bd17065f32e1f294d8b922a0735fd25.zip
chromium_src-ea5ef4c89bd17065f32e1f294d8b922a0735fd25.tar.gz
chromium_src-ea5ef4c89bd17065f32e1f294d8b922a0735fd25.tar.bz2
Make net and ipc explicitly use the base namespace for Values.
They're currently relying on a using in values.h that we want to remove. I removed several usings in net for consistency. BUG= R=willchan@chromium.org Review URL: https://codereview.chromium.org/15662008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206187 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_pipelined_host_pool.cc')
-rw-r--r--net/http/http_pipelined_host_pool.cc9
1 files changed, 3 insertions, 6 deletions
diff --git a/net/http/http_pipelined_host_pool.cc b/net/http/http_pipelined_host_pool.cc
index 7b00e7e..b8fec2a 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;