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

Unified Diff: net/http/http_pipelined_host_impl.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_forced.cc ('k') | net/http/http_pipelined_host_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_impl.cc
diff --git a/net/http/http_pipelined_host_impl.cc b/net/http/http_pipelined_host_impl.cc
index 2c8238a192233b74a20c0ab136ef9eac26b39bc1..2a41ca41a8520c24c6f3e1f23da466f5464fe780 100644
--- a/net/http/http_pipelined_host_impl.cc
+++ b/net/http/http_pipelined_host_impl.cc
@@ -9,10 +9,6 @@
#include "net/http/http_pipelined_connection_impl.h"
#include "net/http/http_pipelined_stream.h"
-using base::DictionaryValue;
-using base::ListValue;
-using base::Value;
-
namespace net {
// TODO(simonjam): Run experiments to see what value minimizes evictions without
@@ -190,11 +186,11 @@ void HttpPipelinedHostImpl::NotifyAllPipelinesHaveCapacity() {
}
}
-Value* HttpPipelinedHostImpl::PipelineInfoToValue() const {
- ListValue* list_value = new ListValue();
+base::Value* HttpPipelinedHostImpl::PipelineInfoToValue() const {
+ base::ListValue* list_value = new base::ListValue();
for (PipelineInfoMap::const_iterator it = pipelines_.begin();
it != pipelines_.end(); ++it) {
- DictionaryValue* pipeline_dict = new DictionaryValue;
+ base::DictionaryValue* pipeline_dict = new base::DictionaryValue;
pipeline_dict->SetString("host", key_.origin().ToString());
pipeline_dict->SetBoolean("forced", false);
pipeline_dict->SetInteger("depth", it->first->depth());
« no previous file with comments | « net/http/http_pipelined_host_forced.cc ('k') | net/http/http_pipelined_host_pool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698