diff options
Diffstat (limited to 'net/http/http_stream_parser.cc')
-rw-r--r-- | net/http/http_stream_parser.cc | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/net/http/http_stream_parser.cc b/net/http/http_stream_parser.cc index 4bec46f..e53aafd 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); |