Index: net/url_request/url_request_http_job.h |
diff --git a/net/url_request/url_request_http_job.h b/net/url_request/url_request_http_job.h |
index 2f1d8839cdee2e93b37f39922091ffe28e3bf679..f72cb15bd4c6b4cc4a48f2d51e80a402c1b4c9e8 100644 |
--- a/net/url_request/url_request_http_job.h |
+++ b/net/url_request/url_request_http_job.h |
@@ -134,6 +134,7 @@ class NET_EXPORT_PRIVATE URLRequestHttpJob : public URLRequestJob { |
void StopCaching() override; |
bool GetFullRequestHeaders(HttpRequestHeaders* headers) const override; |
int64 GetTotalReceivedBytes() const override; |
+ int64_t GetTotalSentBytes() const override; |
void DoneReading() override; |
void DoneReadingRedirectResponse() override; |
@@ -279,6 +280,9 @@ class NET_EXPORT_PRIVATE URLRequestHttpJob : public URLRequestJob { |
// Keeps track of total received bytes over the network from transactions used |
// by this job that have already been destroyed. |
int64_t total_received_bytes_from_previous_transactions_; |
+ // Keeps track of total sent bytes over the network from transactions used by |
+ // this job that have already been destroyed. |
+ int64_t total_sent_bytes_from_previous_transactions_; |
base::WeakPtrFactory<URLRequestHttpJob> weak_factory_; |