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

Unified Diff: chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.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/remote_to_local_syncer.h
diff --git a/chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.h b/chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.h
index 6c55e1b5e501f8da9c067134a91d46412035e2ae..84fa6047d5301c0c8586253cb7686d99b3555b03 100644
--- a/chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.h
+++ b/chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.h
@@ -24,9 +24,9 @@ class DriveServiceInterface;
}
namespace google_apis {
+class FileList;
class FileResource;
class ResourceEntry;
-class ResourceList;
}
namespace webkit_blob {
@@ -159,7 +159,7 @@ class RemoteToLocalSyncer : public ExclusiveTask {
const SyncStatusCallback& callback,
scoped_ptr<FileIDList> children,
google_apis::GDataErrorCode error,
- scoped_ptr<google_apis::ResourceList> resource_list);
+ scoped_ptr<google_apis::FileList> file_list);
void SyncCompleted(const SyncStatusCallback& callback, SyncStatusCode status);
void FinalizeSync(const SyncStatusCallback& callback, SyncStatusCode status);

Powered by Google App Engine
This is Rietveld 408576698