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

Unified Diff: third_party/WebKit/Source/platform/testing/weburl_loader_mock.cc

Issue 2540023003: Dispatch encoded_data_length separately in content/child (Closed)
Patch Set: rebase 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/testing/weburl_loader_mock.cc
diff --git a/third_party/WebKit/Source/platform/testing/weburl_loader_mock.cc b/third_party/WebKit/Source/platform/testing/weburl_loader_mock.cc
index 094d2c0ebe2467679a0fcec9ca449cafea519916..6d659c3206cdba065234acdf8a418a77a4a0f7bf 100644
--- a/third_party/WebKit/Source/platform/testing/weburl_loader_mock.cc
+++ b/third_party/WebKit/Source/platform/testing/weburl_loader_mock.cc
@@ -52,7 +52,7 @@ void WebURLLoaderMock::ServeAsynchronousRequest(
delegate->didFail(client_, error, data.size(), 0);
return;
}
- delegate->didReceiveData(client_, data.data(), data.size(), data.size());
+ delegate->didReceiveData(client_, data.data(), data.size());
if (!self)
return;

Powered by Google App Engine
This is Rietveld 408576698