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

Unified Diff: chrome/browser/chromeos/gdata/gdata_file_system.h

Issue 10399063: Revert 137657 - Remove directory_path argument from chromeos::FindEntryCallback (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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/gdata/gdata_file_system.h
===================================================================
--- chrome/browser/chromeos/gdata/gdata_file_system.h (revision 137657)
+++ chrome/browser/chromeos/gdata/gdata_file_system.h (working copy)
@@ -958,6 +958,7 @@
// directory.
void OnUpdateChecked(ContentOrigin initial_origin,
base::PlatformFileError error,
+ const FilePath& directory_path,
GDataEntry* entry);
// Starts root feed load from the cache. If successful, it will try to find
@@ -1342,16 +1343,19 @@
// Called when an entry is found for GetEntryInfoByPathAsync().
void OnGetEntryInfo(const GetEntryInfoCallback& callback,
base::PlatformFileError error,
+ const FilePath& entry_path,
GDataEntry* entry);
// Called when an entry is found for GetFileInfoByPathAsync().
void OnGetFileInfo(const GetFileInfoCallback& callback,
base::PlatformFileError error,
+ const FilePath& directory_path,
GDataEntry* entry);
// Called when an entry is found for ReadDirectoryByPathAsync().
void OnReadDirectory(const ReadDirectoryCallback& callback,
base::PlatformFileError error,
+ const FilePath& directory_path,
GDataEntry* entry);
// Finds file info by using virtual |file_path|. This call will also
« no previous file with comments | « chrome/browser/chromeos/gdata/find_entry_callback.cc ('k') | chrome/browser/chromeos/gdata/gdata_file_system.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698