diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-13 22:50:27 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-13 22:50:27 +0000 |
commit | ea5ef4c89bd17065f32e1f294d8b922a0735fd25 (patch) | |
tree | 530a4633c162b39a7149714d83b34a24ef1220e2 /net/http/http_pipelined_host_forced.cc | |
parent | abf7641841f0ade77b8339e3f1368c9f3ff711bd (diff) | |
download | chromium_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_forced.cc')
-rw-r--r-- | net/http/http_pipelined_host_forced.cc | 10 |
1 files changed, 3 insertions, 7 deletions
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()); |