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

Unified Diff: chrome/browser/chromeos/drive/file_system_interface.h

Issue 276313002: drive: Change FileCache::GetCacheEntry's return type to FileError (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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_interface.h
diff --git a/chrome/browser/chromeos/drive/file_system_interface.h b/chrome/browser/chromeos/drive/file_system_interface.h
index 1ddbc8f4150496b06e9a43167ec21e87a1a782fe..495bb2287ab263b2a9a9741ed32d4e444cef9483 100644
--- a/chrome/browser/chromeos/drive/file_system_interface.h
+++ b/chrome/browser/chromeos/drive/file_system_interface.h
@@ -125,9 +125,7 @@ typedef base::Callback<void(FileError error,
MarkMountedCallback;
// Callback for GetCacheEntry.
-// |success| indicates if the operation was successful.
-// |cache_entry| is the obtained cache entry.
-typedef base::Callback<void(bool success, const FileCacheEntry& cache_entry)>
+typedef base::Callback<void(FileError error, const FileCacheEntry& cache_entry)>
GetCacheEntryCallback;
// Used to get file path.

Powered by Google App Engine
This is Rietveld 408576698