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

Unified Diff: third_party/WebKit/Source/web/tests/sim/SimRequest.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/web/tests/sim/SimRequest.cpp
diff --git a/third_party/WebKit/Source/web/tests/sim/SimRequest.cpp b/third_party/WebKit/Source/web/tests/sim/SimRequest.cpp
index 28af44df4cc348fce4f518b5b8c84b81f7815f8a..1c6279ab3cf41ad46c9abd0cbb9a8c930feb46bf 100644
--- a/third_party/WebKit/Source/web/tests/sim/SimRequest.cpp
+++ b/third_party/WebKit/Source/web/tests/sim/SimRequest.cpp
@@ -51,7 +51,7 @@ void SimRequest::write(const String& data) {
DCHECK(m_isReady);
DCHECK(!m_error.reason);
m_totalEncodedDataLength += data.length();
- m_client->didReceiveData(data.utf8().data(), data.length(), data.length());
+ m_client->didReceiveData(data.utf8().data(), data.length());
}
void SimRequest::finish() {

Powered by Google App Engine
This is Rietveld 408576698