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

Side by Side Diff: content/common/resource_request_completion_status.h

Issue 2835123005: Send the decoded size when response completed and stop summing in ResourceLoader::DidReceiveData() (Closed)
Patch Set: Created 3 years, 8 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 unified diff | Download patch
« no previous file with comments | « content/common/resource_messages.h ('k') | content/public/child/request_peer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_COMMON_RESOURCE_REQUEST_COMPLETION_STATUS_H_ 5 #ifndef CONTENT_COMMON_RESOURCE_REQUEST_COMPLETION_STATUS_H_
6 #define CONTENT_COMMON_RESOURCE_REQUEST_COMPLETION_STATUS_H_ 6 #define CONTENT_COMMON_RESOURCE_REQUEST_COMPLETION_STATUS_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 #include <string> 9 #include <string>
10 10
(...skipping 18 matching lines...) Expand all
29 bool exists_in_cache = false; 29 bool exists_in_cache = false;
30 30
31 // Time the request completed. 31 // Time the request completed.
32 base::TimeTicks completion_time; 32 base::TimeTicks completion_time;
33 33
34 // Total amount of data received from the network. 34 // Total amount of data received from the network.
35 int64_t encoded_data_length = 0; 35 int64_t encoded_data_length = 0;
36 36
37 // The length of the response body before removing any content encodings. 37 // The length of the response body before removing any content encodings.
38 int64_t encoded_body_length = 0; 38 int64_t encoded_body_length = 0;
39
40 // The length of the response body after decoding.
41 int64_t decoded_body_length = 0;
39 }; 42 };
40 43
41 } // namespace content 44 } // namespace content
42 45
43 #endif // CONTENT_COMMON_RESOURCE_REQUEST_COMPLETION_STATUS_H_ 46 #endif // CONTENT_COMMON_RESOURCE_REQUEST_COMPLETION_STATUS_H_
OLDNEW
« no previous file with comments | « content/common/resource_messages.h ('k') | content/public/child/request_peer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698