Index: content/browser/download/download_resource_handler.cc |
diff --git a/content/browser/download/download_resource_handler.cc b/content/browser/download/download_resource_handler.cc |
index 30cf6fab78a4aae523dbf622206843204702e5e7..e52984a1c478b7c3063c95a0768208a4bc59dca2 100644 |
--- a/content/browser/download/download_resource_handler.cc |
+++ b/content/browser/download/download_resource_handler.cc |
@@ -172,9 +172,8 @@ void DownloadResourceHandler::OnWillStart( |
// Create a new buffer, which will be handed to the download thread for file |
// writing and deletion. |
bool DownloadResourceHandler::OnWillRead(scoped_refptr<net::IOBuffer>* buf, |
- int* buf_size, |
- int min_size) { |
- return core_.OnWillRead(buf, buf_size, min_size); |
+ int* buf_size) { |
+ return core_.OnWillRead(buf, buf_size); |
} |
// Pass the buffer to the download file writer. |