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

Unified Diff: third_party/WebKit/Source/core/fetch/ResourceLoader.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/core/fetch/ResourceLoader.h
diff --git a/third_party/WebKit/Source/core/fetch/ResourceLoader.h b/third_party/WebKit/Source/core/fetch/ResourceLoader.h
index 64b666784df0f1eb3238ef697d1ef0ccf06d92f4..99fcfe9a015cdfc279bc67400ae440d6eec04274 100644
--- a/third_party/WebKit/Source/core/fetch/ResourceLoader.h
+++ b/third_party/WebKit/Source/core/fetch/ResourceLoader.h
@@ -104,15 +104,16 @@ class CORE_EXPORT ResourceLoader final
void didReceiveData(WebURLLoader*,
const char*,
int,
- int encodedDataLength,
- int encodedBodyLength) override;
+ int encodedDataLength) override;
void didDownloadData(WebURLLoader*, int, int) override;
void didFinishLoading(WebURLLoader*,
double finishTime,
- int64_t encodedDataLength) override;
+ int64_t encodedDataLength,
+ int64_t encodedBodyLength) override;
void didFail(WebURLLoader*,
const WebURLError&,
- int64_t encodedDataLength) override;
+ int64_t encodedDataLength,
+ int64_t encodedBodyLength) override;
void didFinishLoadingFirstPartInMultipart();
void didFail(const ResourceError&);
« no previous file with comments | « third_party/WebKit/Source/core/fetch/ImageResourceTest.cpp ('k') | third_party/WebKit/Source/core/fetch/ResourceLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698