| Index: net/http/http_stream_parser.cc
|
| diff --git a/net/http/http_stream_parser.cc b/net/http/http_stream_parser.cc
|
| index 4bec46f1c7ac60f80d7dd48299fc27d9bf91376e..e53aafdac1cfd4871dd41d3cd2989d1ed6e1de27 100644
|
| --- a/net/http/http_stream_parser.cc
|
| +++ b/net/http/http_stream_parser.cc
|
| @@ -56,11 +56,12 @@ bool HeadersContainMultipleCopiesOfField(
|
| return false;
|
| }
|
|
|
| -Value* NetLogSendRequestBodyCallback(int length,
|
| - bool is_chunked,
|
| - bool did_merge,
|
| - net::NetLog::LogLevel /* log_level */) {
|
| - DictionaryValue* dict = new DictionaryValue();
|
| +base::Value* NetLogSendRequestBodyCallback(
|
| + int length,
|
| + bool is_chunked,
|
| + bool did_merge,
|
| + net::NetLog::LogLevel /* log_level */) {
|
| + base::DictionaryValue* dict = new base::DictionaryValue();
|
| dict->SetInteger("length", length);
|
| dict->SetBoolean("is_chunked", is_chunked);
|
| dict->SetBoolean("did_merge", did_merge);
|
|
|