Fixing build: removing constness on net::HttpResponseHeaders as otherwise we would need a change in libchromiumcontent.
This commit is contained in:
parent
6f5b0a28c5
commit
de29f2dde5
6 changed files with 12 additions and 12 deletions
|
@ -322,7 +322,7 @@ void URLRequest::OnAuthenticationRequired(
|
|||
}
|
||||
|
||||
void URLRequest::OnResponseStarted(
|
||||
scoped_refptr<const net::HttpResponseHeaders> response_headers) {
|
||||
scoped_refptr<net::HttpResponseHeaders> response_headers) {
|
||||
if (request_state_.Canceled() ||
|
||||
request_state_.Failed() ||
|
||||
request_state_.Closed()) {
|
||||
|
@ -394,7 +394,7 @@ std::string URLRequest::StatusMessage() const {
|
|||
return result;
|
||||
}
|
||||
|
||||
scoped_refptr<const net::HttpResponseHeaders>
|
||||
scoped_refptr<net::HttpResponseHeaders>
|
||||
URLRequest::RawResponseHeaders() const {
|
||||
return response_headers_;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue