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

Unified Diff: net/url_request/url_request_job.cc

Issue 1080763003: Remove URLRequestJob::filter_input_byte_count_ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix merge Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/url_request/url_request_job.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_job.cc
diff --git a/net/url_request/url_request_job.cc b/net/url_request/url_request_job.cc
index 3757475e955892dbdd9e19471545b429cafc4888..2157b62ff20eb3230835c079bad6a29805e26aba 100644
--- a/net/url_request/url_request_job.cc
+++ b/net/url_request/url_request_job.cc
@@ -60,7 +60,6 @@ URLRequestJob::URLRequestJob(URLRequest* request,
done_(false),
prefilter_bytes_read_(0),
postfilter_bytes_read_(0),
- filter_input_byte_count_(0),
filter_needs_more_output_space_(false),
filtered_read_buffer_len_(0),
has_handled_response_(false),
@@ -884,7 +883,6 @@ void URLRequestJob::OnRawReadComplete(int bytes_read) {
}
void URLRequestJob::RecordBytesRead(int bytes_read) {
- filter_input_byte_count_ += bytes_read;
prefilter_bytes_read_ += bytes_read;
if (!filter_.get())
postfilter_bytes_read_ += bytes_read;
« no previous file with comments | « net/url_request/url_request_job.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698