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/ftp | |
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/ftp')
-rw-r--r-- | net/ftp/ftp_ctrl_response_buffer.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/ftp/ftp_ctrl_response_buffer.cc b/net/ftp/ftp_ctrl_response_buffer.cc index 93c7715..f7b1467 100644 --- a/net/ftp/ftp_ctrl_response_buffer.cc +++ b/net/ftp/ftp_ctrl_response_buffer.cc @@ -79,12 +79,12 @@ int FtpCtrlResponseBuffer::ConsumeData(const char* data, int data_length) { namespace { -Value* NetLogFtpCtrlResponseCallback(const FtpCtrlResponse* response, - NetLog::LogLevel log_level) { - ListValue* lines = new ListValue(); +base::Value* NetLogFtpCtrlResponseCallback(const FtpCtrlResponse* response, + NetLog::LogLevel log_level) { + base::ListValue* lines = new base::ListValue(); lines->AppendStrings(response->lines); - DictionaryValue* dict = new DictionaryValue(); + base::DictionaryValue* dict = new base::DictionaryValue(); dict->SetInteger("status_code", response->status_code); dict->Set("lines", lines); return dict; |