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

Unified Diff: net/http/http_pipelined_host_pool.cc

Issue 15662008: Make net and ipc explicitly use the base namespace for Values. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months 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
« no previous file with comments | « net/http/http_pipelined_host_impl.cc ('k') | net/http/http_proxy_client_socket_pool.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « net/http/http_pipelined_host_impl.cc ('k') | net/http/http_proxy_client_socket_pool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698