summaryrefslogtreecommitdiffstats
path: root/net/ftp
diff options
context:
space:
mode:
Diffstat (limited to 'net/ftp')
-rw-r--r--net/ftp/ftp_ctrl_response_buffer.cc8
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;