Index: chrome/browser/chromeos/drive/file_cache.cc |
diff --git a/chrome/browser/chromeos/drive/file_cache.cc b/chrome/browser/chromeos/drive/file_cache.cc |
index c37a27457604e4d4312fb0ad5612538c0c52b5e8..98a54bae3023839955bf5ad09d1bd902dfe8d49d 100644 |
--- a/chrome/browser/chromeos/drive/file_cache.cc |
+++ b/chrome/browser/chromeos/drive/file_cache.cc |
@@ -71,10 +71,11 @@ bool FileCache::IsUnderFileCacheDirectory(const base::FilePath& path) const { |
return cache_file_directory_.IsParent(path); |
} |
-bool FileCache::GetCacheEntry(const std::string& id, FileCacheEntry* entry) { |
+FileError FileCache::GetCacheEntry(const std::string& id, |
+ FileCacheEntry* entry) { |
DCHECK(entry); |
AssertOnSequencedWorkerPool(); |
- return storage_->GetCacheEntry(id, entry) == FILE_ERROR_OK; |
+ return storage_->GetCacheEntry(id, entry); |
} |
scoped_ptr<FileCache::Iterator> FileCache::GetIterator() { |