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

Unified Diff: third_party/WebKit/Source/platform/exported/WebURLLoaderTestDelegate.cpp

Issue 2540023003: Dispatch encoded_data_length separately in content/child (Closed)
Patch Set: fix Created 4 years 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: third_party/WebKit/Source/platform/exported/WebURLLoaderTestDelegate.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebURLLoaderTestDelegate.cpp b/third_party/WebKit/Source/platform/exported/WebURLLoaderTestDelegate.cpp
index 8f945e304da0055d102c544cbf9c24d374402e88..befdf9ca114f89a6658da4b2d4a1380f4fee25c1 100644
--- a/third_party/WebKit/Source/platform/exported/WebURLLoaderTestDelegate.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebURLLoaderTestDelegate.cpp
@@ -24,9 +24,8 @@ void WebURLLoaderTestDelegate::didReceiveResponse(
void WebURLLoaderTestDelegate::didReceiveData(
WebURLLoaderClient* originalClient,
const char* data,
- int dataLength,
- int encodedDataLength) {
- originalClient->didReceiveData(data, dataLength, encodedDataLength);
+ int dataLength) {
+ originalClient->didReceiveData(data, dataLength);
}
void WebURLLoaderTestDelegate::didFail(WebURLLoaderClient* originalClient,

Powered by Google App Engine
This is Rietveld 408576698