Index: chrome/browser/sync_file_system/drive_backend/api_util.cc |
diff --git a/chrome/browser/sync_file_system/drive_backend/api_util.cc b/chrome/browser/sync_file_system/drive_backend/api_util.cc |
index ea4070f503d73c8794d12e93a46713b9eaa21b38..e131b82bbed00e0ab4074fb664fb8d7fd21ea3d2 100644 |
--- a/chrome/browser/sync_file_system/drive_backend/api_util.cc |
+++ b/chrome/browser/sync_file_system/drive_backend/api_util.cc |
@@ -725,9 +725,9 @@ void APIUtil::DownloadFileInternal( |
} |
DVLOG(2) << "Downloading file: " << entry->resource_id(); |
- const GURL& download_url = entry->download_url(); |
+ const std::string& resource_id = entry->resource_id(); |
drive_service_->DownloadFile(local_file_path, |
- download_url, |
+ resource_id, |
base::Bind(&APIUtil::DidDownloadFile, |
AsWeakPtr(), |
base::Passed(&entry), |