| Index: net/http/http_response_headers.cc
 | 
| diff --git a/net/http/http_response_headers.cc b/net/http/http_response_headers.cc
 | 
| index 279149f571f96392d1bb66a66cad54697a7c4a17..bffa004d61aec8ca45607fdf7608550f7aa44edf 100644
 | 
| --- a/net/http/http_response_headers.cc
 | 
| +++ b/net/http/http_response_headers.cc
 | 
| @@ -1299,19 +1299,19 @@ bool HttpResponseHeaders::GetContentRange(int64* first_byte_position,
 | 
|    return true;
 | 
|  }
 | 
|  
 | 
| -Value* HttpResponseHeaders::NetLogCallback(
 | 
| +base::Value* HttpResponseHeaders::NetLogCallback(
 | 
|      NetLog::LogLevel /* log_level */) const {
 | 
| -  DictionaryValue* dict = new DictionaryValue();
 | 
| -  ListValue* headers = new ListValue();
 | 
| -  headers->Append(new StringValue(GetStatusLine()));
 | 
| +  base::DictionaryValue* dict = new base::DictionaryValue();
 | 
| +  base::ListValue* headers = new base::ListValue();
 | 
| +  headers->Append(new base::StringValue(GetStatusLine()));
 | 
|    void* iterator = NULL;
 | 
|    std::string name;
 | 
|    std::string value;
 | 
|    while (EnumerateHeaderLines(&iterator, &name, &value)) {
 | 
|      headers->Append(
 | 
| -      new StringValue(base::StringPrintf("%s: %s",
 | 
| -                                         name.c_str(),
 | 
| -                                         value.c_str())));
 | 
| +      new base::StringValue(base::StringPrintf("%s: %s",
 | 
| +                                               name.c_str(),
 | 
| +                                               value.c_str())));
 | 
|    }
 | 
|    dict->Set("headers", headers);
 | 
|    return dict;
 | 
| 
 |