Index: content/child/resource_dispatcher.cc |
diff --git a/content/child/resource_dispatcher.cc b/content/child/resource_dispatcher.cc |
index ba2e76be7369227031660b7d64e8c7b19dca6659..36ea936369c17a39cf5ae05e8eedaa17d60bdfae 100644 |
--- a/content/child/resource_dispatcher.cc |
+++ b/content/child/resource_dispatcher.cc |
@@ -639,9 +639,9 @@ int ResourceDispatcher::StartAsync( |
// Compute a unique request_id for this renderer process. |
int request_id = MakeRequestID(); |
- pending_requests_[request_id] = base::WrapUnique(new PendingRequestInfo( |
+ pending_requests_[request_id] = base::MakeUnique<PendingRequestInfo>( |
std::move(peer), request->resource_type, request->origin_pid, |
- frame_origin, request->url, request_info.download_to_file)); |
+ frame_origin, request->url, request_info.download_to_file); |
if (resource_scheduling_filter_.get() && request_info.loading_task_runner) { |
resource_scheduling_filter_->SetRequestIdTaskRunner( |