| Index: content/child/url_loader_client_impl.cc
|
| diff --git a/content/child/url_loader_client_impl.cc b/content/child/url_loader_client_impl.cc
|
| index bb5eeba4593f040301504e443611b5e68342a528..a431c9a8fadcd1b39f97a502d3f4170acb468382 100644
|
| --- a/content/child/url_loader_client_impl.cc
|
| +++ b/content/child/url_loader_client_impl.cc
|
| @@ -112,9 +112,9 @@ void URLLoaderClientImpl::FlushDeferredMessages() {
|
|
|
| void URLLoaderClientImpl::OnReceiveResponse(
|
| const ResourceResponseHead& response_head,
|
| - mojom::DownloadedTempFileAssociatedPtrInfo downloaded_file) {
|
| + mojom::DownloadedTempFilePtr downloaded_file) {
|
| has_received_response_ = true;
|
| - downloaded_file_.Bind(std::move(downloaded_file));
|
| + downloaded_file_ = std::move(downloaded_file);
|
| Dispatch(ResourceMsg_ReceivedResponse(request_id_, response_head));
|
| }
|
|
|
|
|