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

Unified Diff: content/common/resource_request_completion_status.h

Issue 2514713002: Send encoded_body_length to renderer when response completed (1/3) (Closed)
Patch Set: fix 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: content/common/resource_request_completion_status.h
diff --git a/content/common/resource_request_completion_status.h b/content/common/resource_request_completion_status.h
index 3ef01cee1f3c90ed2f6991e2436830f45714c06a..8b67a683801d59c9ce29ccf9da949636af7bafe5 100644
--- a/content/common/resource_request_completion_status.h
+++ b/content/common/resource_request_completion_status.h
@@ -33,6 +33,9 @@ struct CONTENT_EXPORT ResourceRequestCompletionStatus {
// Total amount of data received from the network.
int64_t encoded_data_length = 0;
+
+ // Total amount of the response body in the encoded format.
Adam Rice 2016/11/21 04:26:48 This is a little hard to understand. I suggest jus
yhirano 2016/11/21 06:40:27 Done.
+ int64_t encoded_body_length = 0;
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698