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

Unified Diff: chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.h

Issue 881403003: Rename gdata_errorcode.h to drive_api_error_codes.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix typos in BUILD.gn Created 5 years, 11 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 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,

Powered by Google App Engine
This is Rietveld 408576698