| Index: content/browser/renderer_host/resource_dispatcher_host_impl.h
|
| diff --git a/content/browser/renderer_host/resource_dispatcher_host_impl.h b/content/browser/renderer_host/resource_dispatcher_host_impl.h
|
| index 2a770ca8f24719f070bd0494cdaa38770cd0d2ec..7c4701de6bd9727e2c318aae8c221a6be1d4f83e 100644
|
| --- a/content/browser/renderer_host/resource_dispatcher_host_impl.h
|
| +++ b/content/browser/renderer_host/resource_dispatcher_host_impl.h
|
| @@ -80,7 +80,7 @@ class CONTENT_EXPORT ResourceDispatcherHostImpl
|
| int child_id,
|
| int route_id,
|
| bool prefer_cache,
|
| - const DownloadSaveInfo& save_info,
|
| + scoped_ptr<DownloadSaveInfo> save_info,
|
| const DownloadStartedCallback& started_callback) OVERRIDE;
|
| virtual void ClearLoginDelegateForRequest(net::URLRequest* request) OVERRIDE;
|
| virtual void BlockRequestsForRoute(int child_id, int route_id) OVERRIDE;
|
| @@ -209,7 +209,7 @@ class CONTENT_EXPORT ResourceDispatcherHostImpl
|
| scoped_ptr<ResourceHandler> CreateResourceHandlerForDownload(
|
| net::URLRequest* request,
|
| bool is_content_initiated,
|
| - const DownloadSaveInfo& save_info,
|
| + scoped_ptr<DownloadSaveInfo> save_info,
|
| const DownloadResourceHandler::OnStartedCallback& started_cb);
|
|
|
| void ClearSSLClientAuthHandlerForRequest(net::URLRequest* request);
|
|
|