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 f7f29913c3e95f962e187bd7dc2edb9a77c1a831..e360452ae2337f97b763714d072e331141bd3832 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 |
@@ -17,7 +17,7 @@ |
#include "chrome/browser/sync_file_system/sync_action.h" |
#include "chrome/browser/sync_file_system/sync_callbacks.h" |
#include "chrome/browser/sync_file_system/sync_file_metadata.h" |
-#include "google_apis/drive/gdata_errorcode.h" |
+#include "google_apis/drive/drive_api_error_codes.h" |
#include "storage/browser/fileapi/file_system_url.h" |
namespace drive { |
@@ -116,7 +116,7 @@ class RemoteToLocalSyncer : public SyncTask { |
// Note: if the file is not found, it should be handled as if deleted. |
void HandleMissingRemoteMetadata(scoped_ptr<SyncTaskToken> token); |
void DidGetRemoteMetadata(scoped_ptr<SyncTaskToken> token, |
- google_apis::GDataErrorCode error, |
+ google_apis::DriveApiErrorCode error, |
scoped_ptr<google_apis::FileResource> entry); |
// This implements the body of the HandleNewFile and HandleContentUpdate. |
@@ -165,7 +165,7 @@ class RemoteToLocalSyncer : public SyncTask { |
void DidListFolderContent( |
scoped_ptr<SyncTaskToken> token, |
scoped_ptr<FileIDList> children, |
- google_apis::GDataErrorCode error, |
+ google_apis::DriveApiErrorCode error, |
scoped_ptr<google_apis::FileList> file_list); |
void SyncCompleted(scoped_ptr<SyncTaskToken> token, SyncStatusCode status); |
@@ -181,7 +181,7 @@ class RemoteToLocalSyncer : public SyncTask { |
void DownloadFile(scoped_ptr<SyncTaskToken> token); |
void DidDownloadFile(scoped_ptr<SyncTaskToken> token, |
storage::ScopedFile file, |
- google_apis::GDataErrorCode error, |
+ google_apis::DriveApiErrorCode error, |
const base::FilePath&); |
void DidApplyDownload(scoped_ptr<SyncTaskToken> token, |
storage::ScopedFile, |