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

Unified Diff: chrome/browser/chromeos/drive/remove_stale_cache_files.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/remove_stale_cache_files.cc
diff --git a/chrome/browser/chromeos/drive/remove_stale_cache_files.cc b/chrome/browser/chromeos/drive/remove_stale_cache_files.cc
index c61ff35c9e2890bb5701fa9e98d190efd630700e..1dcbfd81e9f49dd782b1039a360bdc81a4b6d76d 100644
--- a/chrome/browser/chromeos/drive/remove_stale_cache_files.cc
+++ b/chrome/browser/chromeos/drive/remove_stale_cache_files.cc
@@ -26,7 +26,7 @@ void CollectStaleCacheFiles(
const FileCacheEntry& cache_entry) {
ResourceEntry entry;
FileError error = resource_metadata->GetResourceEntryById(
- resource_id, NULL, &entry);
+ resource_id, &entry);
// The entry is not found or the MD5 does not match.
if (error != FILE_ERROR_OK ||
« no previous file with comments | « chrome/browser/chromeos/drive/mock_file_system.h ('k') | chrome/browser/chromeos/drive/remove_stale_cache_files_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698