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

Unified Diff: chrome/browser/sync_file_system/drive_backend/sync_engine_initializer.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/sync_engine_initializer.h
diff --git a/chrome/browser/sync_file_system/drive_backend/sync_engine_initializer.h b/chrome/browser/sync_file_system/drive_backend/sync_engine_initializer.h
index 593bc244c27641824530482fbda72e6a9c3ca197..ee7df71110c07247bffdb8f6e53b425a7669ad01 100644
--- a/chrome/browser/sync_file_system/drive_backend/sync_engine_initializer.h
+++ b/chrome/browser/sync_file_system/drive_backend/sync_engine_initializer.h
@@ -13,8 +13,8 @@
#include "base/memory/weak_ptr.h"
#include "chrome/browser/sync_file_system/drive_backend/sync_task.h"
#include "chrome/browser/sync_file_system/sync_callbacks.h"
+#include "google_apis/drive/drive_api_error_codes.h"
#include "google_apis/drive/drive_common_callbacks.h"
-#include "google_apis/drive/gdata_errorcode.h"
namespace drive {
class DriveServiceInterface;
@@ -79,23 +79,23 @@ class SyncEngineInitializer : public SyncTask {
void GetAboutResource(scoped_ptr<SyncTaskToken> token);
void DidGetAboutResource(
scoped_ptr<SyncTaskToken> token,
- google_apis::GDataErrorCode error,
+ google_apis::DriveApiErrorCode error,
scoped_ptr<google_apis::AboutResource> about_resource);
void FindSyncRoot(scoped_ptr<SyncTaskToken> token);
void DidFindSyncRoot(scoped_ptr<SyncTaskToken> token,
- google_apis::GDataErrorCode error,
+ google_apis::DriveApiErrorCode error,
scoped_ptr<google_apis::FileList> file_list);
void CreateSyncRoot(scoped_ptr<SyncTaskToken> token);
void DidCreateSyncRoot(scoped_ptr<SyncTaskToken> token,
- google_apis::GDataErrorCode error,
+ google_apis::DriveApiErrorCode error,
scoped_ptr<google_apis::FileResource> entry);
void DetachSyncRoot(scoped_ptr<SyncTaskToken> token);
void DidDetachSyncRoot(scoped_ptr<SyncTaskToken> token,
- google_apis::GDataErrorCode error);
+ google_apis::DriveApiErrorCode error);
void ListAppRootFolders(scoped_ptr<SyncTaskToken> token);
void DidListAppRootFolders(
scoped_ptr<SyncTaskToken> token,
- google_apis::GDataErrorCode error,
+ google_apis::DriveApiErrorCode error,
scoped_ptr<google_apis::FileList> file_list);
void PopulateDatabase(scoped_ptr<SyncTaskToken> token);

Powered by Google App Engine
This is Rietveld 408576698