Commit 80305736 authored by sclittle's avatar sclittle Committed by Commit bot

Changed URLRequest::received_response_content_length() to be a const method.

BUG=416673

Review URL: https://codereview.chromium.org/592903002

Cr-Commit-Position: refs/heads/master@{#296128}
parent 55364fd0
...@@ -666,7 +666,7 @@ class NET_EXPORT URLRequest : NON_EXPORTED_BASE(public base::NonThreadSafe), ...@@ -666,7 +666,7 @@ class NET_EXPORT URLRequest : NON_EXPORTED_BASE(public base::NonThreadSafe),
void set_received_response_content_length(int64 received_content_length) { void set_received_response_content_length(int64 received_content_length) {
received_response_content_length_ = 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_; return received_response_content_length_;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment