| Index: net/ftp/ftp_ctrl_response_buffer.cc
|
| diff --git a/net/ftp/ftp_ctrl_response_buffer.cc b/net/ftp/ftp_ctrl_response_buffer.cc
|
| index 93c7715dded0f4bf7417fee31cd7d8725bed4fa1..f7b14678095a7ecfa9bea48b832b79dd98cd498f 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;
|
|
|