| Index: chrome/browser/download/download_file.cc
|
| ===================================================================
|
| --- chrome/browser/download/download_file.cc (revision 35459)
|
| +++ chrome/browser/download/download_file.cc (working copy)
|
| @@ -429,6 +429,7 @@
|
| const GURL& url,
|
| const GURL& referrer,
|
| const std::string& referrer_charset,
|
| + const FilePath& save_file_path,
|
| int render_process_host_id,
|
| int render_view_id,
|
| URLRequestContextGetter* request_context_getter) {
|
| @@ -440,6 +441,7 @@
|
| url,
|
| referrer,
|
| referrer_charset,
|
| + save_file_path,
|
| render_process_host_id,
|
| render_view_id,
|
| request_context_getter));
|
| @@ -524,6 +526,7 @@
|
| const GURL& url,
|
| const GURL& referrer,
|
| const std::string& referrer_charset,
|
| + const FilePath& save_file_path,
|
| int render_process_host_id,
|
| int render_view_id,
|
| URLRequestContextGetter* request_context_getter) {
|
| @@ -534,6 +537,7 @@
|
|
|
| resource_dispatcher_host_->BeginDownload(url,
|
| referrer,
|
| + save_file_path,
|
| render_process_host_id,
|
| render_view_id,
|
| context);
|
|
|