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

Unified Diff: net/http/http_pipelined_host_forced.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_connection_impl.cc ('k') | net/http/http_pipelined_host_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_pipelined_host_forced.cc
diff --git a/net/http/http_pipelined_host_forced.cc b/net/http/http_pipelined_host_forced.cc
index 000936c973f31d844f67e98794aa54b32ab533d3..8179e86f3190d82e8c53a9a313de7058faaf614e 100644
--- a/net/http/http_pipelined_host_forced.cc
+++ b/net/http/http_pipelined_host_forced.cc
@@ -10,10 +10,6 @@
#include "net/socket/buffered_write_stream_socket.h"
#include "net/socket/client_socket_handle.h"
-using base::DictionaryValue;
-using base::ListValue;
-using base::Value;
-
namespace net {
HttpPipelinedHostForced::HttpPipelinedHostForced(
@@ -89,10 +85,10 @@ void HttpPipelinedHostForced::OnPipelineFeedback(
// We don't care. We always pipeline.
}
-Value* HttpPipelinedHostForced::PipelineInfoToValue() const {
- ListValue* list_value = new ListValue();
+base::Value* HttpPipelinedHostForced::PipelineInfoToValue() const {
+ base::ListValue* list_value = new base::ListValue();
if (pipeline_.get()) {
- DictionaryValue* pipeline_dict = new DictionaryValue;
+ base::DictionaryValue* pipeline_dict = new base::DictionaryValue;
pipeline_dict->SetString("host", key_.origin().ToString());
pipeline_dict->SetBoolean("forced", true);
pipeline_dict->SetInteger("depth", pipeline_->depth());
« no previous file with comments | « net/http/http_pipelined_connection_impl.cc ('k') | net/http/http_pipelined_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698