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

Unified Diff: net/url_request/url_request.h

Issue 592903002: Changed URLRequest::received_response_content_length() to be a const method. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 | « no previous file | 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.h
diff --git a/net/url_request/url_request.h b/net/url_request/url_request.h
index 18ca2d30b6160d599d3894989c2c2ec67df4d93a..d8df8fe0c4ccbc5dbce372253783f5438524f785 100644
--- a/net/url_request/url_request.h
+++ b/net/url_request/url_request.h
@@ -666,7 +666,7 @@ class NET_EXPORT URLRequest : NON_EXPORTED_BASE(public base::NonThreadSafe),
void set_received_response_content_length(int64 received_content_length) {
received_response_content_length_ = received_content_length;
}
- int64 received_response_content_length() {
+ int64 received_response_content_length() const {
return received_response_content_length_;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698