Index: chrome/browser/chromeos/drive/job_scheduler.cc |
diff --git a/chrome/browser/chromeos/drive/job_scheduler.cc b/chrome/browser/chromeos/drive/job_scheduler.cc |
index bb8a052c1ff703fd54b1e3159979f78ed75616f3..621021e51825eaf8a4470ce27d32cf131e69c4d0 100644 |
--- a/chrome/browser/chromeos/drive/job_scheduler.cc |
+++ b/chrome/browser/chromeos/drive/job_scheduler.cc |
@@ -534,7 +534,7 @@ void JobScheduler::AddNewDirectory( |
JobID JobScheduler::DownloadFile( |
const base::FilePath& virtual_path, |
const base::FilePath& local_cache_path, |
- const GURL& download_url, |
+ const std::string& resource_id, |
const ClientContext& context, |
const google_apis::DownloadActionCallback& download_action_callback, |
const google_apis::GetContentCallback& get_content_callback) { |
@@ -547,7 +547,7 @@ JobID JobScheduler::DownloadFile( |
&DriveServiceInterface::DownloadFile, |
base::Unretained(drive_service_), |
local_cache_path, |
- download_url, |
+ resource_id, |
base::Bind(&JobScheduler::OnDownloadActionJobDone, |
weak_ptr_factory_.GetWeakPtr(), |
new_job->job_info.job_id, |