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

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

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/file_system.h
diff --git a/chrome/browser/chromeos/drive/file_system.h b/chrome/browser/chromeos/drive/file_system.h
index 40ced62e65ddd96017a7f295a7230ce6557e888e..5ecd829b85b1fd456b3cea04dc9b1ee63b7ce41c 100644
--- a/chrome/browser/chromeos/drive/file_system.h
+++ b/chrome/browser/chromeos/drive/file_system.h
@@ -64,7 +64,7 @@ class FileSystem : public FileSystemInterface,
virtual void CheckForUpdates() OVERRIDE;
virtual void GetResourceEntryById(
const std::string& resource_id,
- const GetResourceEntryWithFilePathCallback& callback) OVERRIDE;
+ const GetResourceEntryCallback& callback) OVERRIDE;
virtual void Search(const std::string& search_query,
const GURL& next_feed,
const SearchCallback& callback) OVERRIDE;
@@ -295,9 +295,8 @@ class FileSystem : public FileSystemInterface,
// ResourceMetadata::GetResourceEntryById() is complete.
// |callback| must not be null.
void GetResourceEntryByIdAfterGetEntry(
- const GetResourceEntryWithFilePathCallback& callback,
+ const GetResourceEntryCallback& callback,
FileError error,
- const base::FilePath& file_path,
scoped_ptr<ResourceEntry> entry);
// Part of RefreshDirectory(). Called after
« no previous file with comments | « chrome/browser/chromeos/drive/fake_file_system_unittest.cc ('k') | chrome/browser/chromeos/drive/file_system.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698