From ea5ef4c89bd17065f32e1f294d8b922a0735fd25 Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Thu, 13 Jun 2013 22:50:27 +0000 Subject: 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 --- net/http/http_pipelined_host_forced.cc | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to '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 000936c..8179e86 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()); -- cgit v1.1