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

Unified Diff: third_party/WebKit/Source/platform/loader/fetch/FetchContext.cpp

Issue 2712833002: DevTools: Show decoded body length for network requests on timeline. (Closed)
Patch Set: rebaseline Created 3 years, 10 months 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/loader/fetch/FetchContext.cpp
diff --git a/third_party/WebKit/Source/platform/loader/fetch/FetchContext.cpp b/third_party/WebKit/Source/platform/loader/fetch/FetchContext.cpp
index 5f2987353b080e3400305fc172a87a3682ec9976..00b0a35a54711fa117d8636445f00d4ab1e17bd1 100644
--- a/third_party/WebKit/Source/platform/loader/fetch/FetchContext.cpp
+++ b/third_party/WebKit/Source/platform/loader/fetch/FetchContext.cpp
@@ -80,7 +80,10 @@ void FetchContext::dispatchDidReceiveEncodedData(unsigned long, int) {}
void FetchContext::dispatchDidDownloadData(unsigned long, int, int) {}
-void FetchContext::dispatchDidFinishLoading(unsigned long, double, int64_t) {}
+void FetchContext::dispatchDidFinishLoading(unsigned long,
+ double,
+ int64_t,
+ int64_t) {}
void FetchContext::dispatchDidFail(unsigned long,
const ResourceError&,

Powered by Google App Engine
This is Rietveld 408576698