Index: net/http/http_stream_parser.cc |
diff --git a/net/http/http_stream_parser.cc b/net/http/http_stream_parser.cc |
index 5aeafa154727ac326814bfb0bd4b15bd1c50f95c..30a63015496ba00859eb6580ed45733d98c76cab 100644 |
--- a/net/http/http_stream_parser.cc |
+++ b/net/http/http_stream_parser.cc |
@@ -74,10 +74,11 @@ bool HeadersContainMultipleCopiesOfField(const HttpResponseHeaders& headers, |
return false; |
} |
-base::Value* NetLogSendRequestBodyCallback(uint64 length, |
- bool is_chunked, |
- bool did_merge, |
- NetLog::LogLevel /* log_level */) { |
+base::Value* NetLogSendRequestBodyCallback( |
+ uint64 length, |
+ bool is_chunked, |
+ bool did_merge, |
+ NetLogCaptureMode /* capture_mode */) { |
base::DictionaryValue* dict = new base::DictionaryValue(); |
dict->SetInteger("length", static_cast<int>(length)); |
dict->SetBoolean("is_chunked", is_chunked); |