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

Unified Diff: Source/web/AssociatedURLLoader.cpp

Issue 23632004: Add encoded_data_length argument to didDownloadData delegate method (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 4 months 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
Index: Source/web/AssociatedURLLoader.cpp
diff --git a/Source/web/AssociatedURLLoader.cpp b/Source/web/AssociatedURLLoader.cpp
index 98f9cae4fe2d7bb43dbb56ea233bb49fd23521a0..5f3fc4dab7f3b9049ddb71ec60cd8bc82c3a808f 100644
--- a/Source/web/AssociatedURLLoader.cpp
+++ b/Source/web/AssociatedURLLoader.cpp
@@ -226,7 +226,7 @@ void AssociatedURLLoader::ClientAdapter::didDownloadData(int dataLength)
if (!m_client)
return;
- m_client->didDownloadData(m_loader, dataLength);
+ m_client->didDownloadData(m_loader, dataLength, -1);
}
void AssociatedURLLoader::ClientAdapter::didReceiveData(const char* data, int dataLength)

Powered by Google App Engine
This is Rietveld 408576698