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

Unified Diff: chrome/browser/chromeos/gdata/find_entry_callback.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
« no previous file with comments | « no previous file | chrome/browser/chromeos/gdata/find_entry_callback.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/gdata/find_entry_callback.h
===================================================================
--- chrome/browser/chromeos/gdata/find_entry_callback.h (revision 137657)
+++ chrome/browser/chromeos/gdata/find_entry_callback.h (working copy)
@@ -17,12 +17,15 @@
// object provided to this callback under lock. It must not be used outside
// of the callback method. This callback can be invoked on different thread
// than one that started the request.
-typedef base::Callback<void(base::PlatformFileError error, GDataEntry* entry)>
+typedef base::Callback<void(base::PlatformFileError error,
+ const FilePath& directory_path,
+ GDataEntry* entry)>
FindEntryCallback;
// Callback used to find a directory element for file system updates.
void ReadOnlyFindEntryCallback(GDataEntry** out,
base::PlatformFileError error,
+ const FilePath& directory_path,
GDataEntry* entry);
} // namespace gdata
« no previous file with comments | « no previous file | chrome/browser/chromeos/gdata/find_entry_callback.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698