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

Unified Diff: third_party/WebKit/Source/web/tests/sim/SimNetwork.h

Issue 2510333002: Send encoded_body_length to renderer when response completed (2/3) (Closed)
Patch Set: rebase Created 4 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
Index: third_party/WebKit/Source/web/tests/sim/SimNetwork.h
diff --git a/third_party/WebKit/Source/web/tests/sim/SimNetwork.h b/third_party/WebKit/Source/web/tests/sim/SimNetwork.h
index 62e48353a606f98a87809d4b70d8366787e165a7..74bb74dd5e6675842876c1b1bbc9298c6e6fc51a 100644
--- a/third_party/WebKit/Source/web/tests/sim/SimNetwork.h
+++ b/third_party/WebKit/Source/web/tests/sim/SimNetwork.h
@@ -46,11 +46,13 @@ class SimNetwork final : public WebURLLoaderTestDelegate {
void didFail(WebURLLoaderClient*,
WebURLLoader*,
const WebURLError&,
- int64_t totalEncodedDataLength) override;
+ int64_t totalEncodedDataLength,
+ int64_t totalEncodedBodyLength) override;
void didFinishLoading(WebURLLoaderClient*,
WebURLLoader*,
double finishTime,
- int64_t totalEncodedDataLength) override;
+ int64_t totalEncodedDataLength,
+ int64_t totalEncodedBodyLength) override;
SimRequest* m_currentRequest;
HashMap<String, SimRequest*> m_requests;
« no previous file with comments | « third_party/WebKit/Source/web/tests/WebFrameTest.cpp ('k') | third_party/WebKit/Source/web/tests/sim/SimNetwork.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698