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

Unified Diff: chrome/browser/sync_file_system/drive_backend/folder_creator.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/folder_creator.h
diff --git a/chrome/browser/sync_file_system/drive_backend/folder_creator.h b/chrome/browser/sync_file_system/drive_backend/folder_creator.h
index 82eeaeaeb0aa9ea08c55eea1e1e1a8d66a6c331e..472989b8e95cbb66713e70da8a5a819f50e72784 100644
--- a/chrome/browser/sync_file_system/drive_backend/folder_creator.h
+++ b/chrome/browser/sync_file_system/drive_backend/folder_creator.h
@@ -18,8 +18,9 @@ class DriveServiceInterface;
}
namespace google_apis {
+class FileList;
+class FileResource;
class ResourceEntry;
-class ResourceList;
}
namespace sync_file_system {
@@ -46,9 +47,9 @@ class FolderCreator {
google_apis::GDataErrorCode error,
scoped_ptr<google_apis::ResourceEntry> entry);
void DidListFolders(const FileIDCallback& callback,
- ScopedVector<google_apis::ResourceEntry> candidates,
+ ScopedVector<google_apis::FileResource> candidates,
google_apis::GDataErrorCode error,
- scoped_ptr<google_apis::ResourceList> resource_list);
+ scoped_ptr<google_apis::FileList> file_list);
void DidUpdateDatabase(const std::string& file_id,
const FileIDCallback& callback,
SyncStatusCode status);

Powered by Google App Engine
This is Rietveld 408576698