Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1470)

Unified Diff: webkit/glue/ftp_directory_listing_response_delegate.cc

Issue 295041: DevTools: report correct content length for resources (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/devtools/js/tests.js ('k') | webkit/glue/multipart_response_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/ftp_directory_listing_response_delegate.cc
===================================================================
--- webkit/glue/ftp_directory_listing_response_delegate.cc (revision 30714)
+++ webkit/glue/ftp_directory_listing_response_delegate.cc (working copy)
@@ -250,7 +250,7 @@
void FtpDirectoryListingResponseDelegate::SendResponseBufferToClient() {
if (!response_buffer_.empty()) {
client_->didReceiveData(loader_, response_buffer_.data(),
- response_buffer_.length(), -1);
+ response_buffer_.length());
response_buffer_.clear();
}
}
« no previous file with comments | « webkit/glue/devtools/js/tests.js ('k') | webkit/glue/multipart_response_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698