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

Unified Diff: chrome/browser/sync_file_system/drive_backend/conflict_resolver.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/conflict_resolver.h
diff --git a/chrome/browser/sync_file_system/drive_backend/conflict_resolver.h b/chrome/browser/sync_file_system/drive_backend/conflict_resolver.h
index 2c9d4e2727f9a06efd33434ff9b3eb16d14c7343..e0cfef747befef3c3fe960cb02972f9ef7cead3f 100644
--- a/chrome/browser/sync_file_system/drive_backend/conflict_resolver.h
+++ b/chrome/browser/sync_file_system/drive_backend/conflict_resolver.h
@@ -13,7 +13,7 @@
#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/gdata_errorcode.h"
+#include "google_apis/drive/drive_api_error_codes.h"
namespace drive {
class DriveServiceInterface;
@@ -50,19 +50,19 @@ class ConflictResolver : public SyncTask {
void DetachFromNonPrimaryParents(scoped_ptr<SyncTaskToken> token);
void DidDetachFromParent(scoped_ptr<SyncTaskToken> token,
- google_apis::GDataErrorCode error);
+ google_apis::DriveApiErrorCode error);
std::string PickPrimaryFile(const TrackerIDSet& trackers);
void RemoveNonPrimaryFiles(scoped_ptr<SyncTaskToken> token);
void DidRemoveFile(scoped_ptr<SyncTaskToken> token,
const std::string& file_id,
- google_apis::GDataErrorCode error);
+ google_apis::DriveApiErrorCode error);
void UpdateFileMetadata(const std::string& file_id,
scoped_ptr<SyncTaskToken> token);
void DidGetRemoteMetadata(const std::string& file_id,
scoped_ptr<SyncTaskToken> token,
- google_apis::GDataErrorCode error,
+ google_apis::DriveApiErrorCode error,
scoped_ptr<google_apis::FileResource> entry);
std::string target_file_id_;

Powered by Google App Engine
This is Rietveld 408576698