Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6523)

Unified Diff: chrome/browser/chromeos/drive/file_system/download_operation.cc

Issue 16107004: drive: Stop returning FilePath from GetResourceEntryById (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/drive/file_system/download_operation.cc
diff --git a/chrome/browser/chromeos/drive/file_system/download_operation.cc b/chrome/browser/chromeos/drive/file_system/download_operation.cc
index 4a02a72db57ec3d39d14445d26f2bf7321c7029f..657e30cadb569116c4c3c3c12c8b2324df02600d 100644
--- a/chrome/browser/chromeos/drive/file_system/download_operation.cc
+++ b/chrome/browser/chromeos/drive/file_system/download_operation.cc
@@ -83,7 +83,7 @@ FileError CheckPreConditionForEnsureFileDownloadedByResourceId(
const std::string& resource_id,
base::FilePath* cache_file_path,
ResourceEntry* entry) {
- FileError error = metadata->GetResourceEntryById(resource_id, NULL, entry);
+ FileError error = metadata->GetResourceEntryById(resource_id, entry);
if (error != FILE_ERROR_OK)
return error;
return CheckPreConditionForEnsureFileDownloaded(

Powered by Google App Engine
This is Rietveld 408576698