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

Unified Diff: chrome/browser/sync_file_system/drive_backend_v1/api_util.h

Issue 305913002: drive: Replace GetResourceListCallback in DriveServiceInterface with FileListCallback (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/sync_file_system/drive_backend_v1/api_util.h
diff --git a/chrome/browser/sync_file_system/drive_backend_v1/api_util.h b/chrome/browser/sync_file_system/drive_backend_v1/api_util.h
index 200d852cf7b0a93dc0e782b1042a0fd67d8ced86..fa52855db98d58e6b7def1a06eb51045d0aeff7e 100644
--- a/chrome/browser/sync_file_system/drive_backend_v1/api_util.h
+++ b/chrome/browser/sync_file_system/drive_backend_v1/api_util.h
@@ -158,14 +158,14 @@ class APIUtil : public APIUtilInterface,
const std::string& sync_root_resource_id,
google_apis::GDataErrorCode error);
+ void DidGetFileList(const ResourceListCallback& callback,
+ google_apis::GDataErrorCode error,
+ scoped_ptr<google_apis::FileList> file_list);
+
void DidGetChangeList(const ResourceListCallback& callback,
google_apis::GDataErrorCode error,
scoped_ptr<google_apis::ChangeList> change_list);
- void DidGetResourceList(const ResourceListCallback& callback,
- google_apis::GDataErrorCode error,
- scoped_ptr<google_apis::ResourceList> resource_list);
-
void DidGetResourceEntry(const ResourceEntryCallback& callback,
google_apis::GDataErrorCode error,
scoped_ptr<google_apis::ResourceEntry> entry);

Powered by Google App Engine
This is Rietveld 408576698