Index: chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc |
diff --git a/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc b/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc |
index bd8889cf7808eabd47dedc31eb0a7f5fafecc82c..76d1a75672b2a9b5b3ca05f0074d5b40b6860bf0 100644 |
--- a/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc |
+++ b/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc |
@@ -474,12 +474,9 @@ void ChromeResourceDispatcherHostDelegate::DownloadStarting( |
// If it's from the web, we don't trust it, so we push the throttle on. |
if (is_content_initiated) { |
- throttles->push_back( |
- new DownloadResourceThrottle(download_request_limiter_.get(), |
- child_id, |
- route_id, |
- request->url(), |
- request->method())); |
+ throttles->push_back(new DownloadResourceThrottle( |
+ download_request_limiter_, child_id, route_id, request->url(), |
+ request->method())); |
#if defined(OS_ANDROID) |
throttles->push_back( |
new chrome::InterceptDownloadResourceThrottle( |