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

Unified Diff: chrome/browser/chromeos/gdata/gdata_sync_client.h

Issue 10877006: Rename GDataErrorCode to DriveErrorCode, GDataFileError to DriveFileError (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: minor local variable name fix. Created 8 years, 4 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/chromeos/gdata/gdata_sync_client.h
diff --git a/chrome/browser/chromeos/gdata/gdata_sync_client.h b/chrome/browser/chromeos/gdata/gdata_sync_client.h
index 3d540df893d7b14a6da14d5185ef732300a5216e..64d4e03f84bae2379e64eebc3b5041c3fbe4669a 100644
--- a/chrome/browser/chromeos/gdata/gdata_sync_client.h
+++ b/chrome/browser/chromeos/gdata/gdata_sync_client.h
@@ -141,7 +141,7 @@ class GDataSyncClient : public GDataFileSystemInterface::Observer,
// Called when a file entry is obtained.
void OnGetEntryInfoByResourceId(const std::string& resource_id,
- GDataFileError error,
+ DriveFileError error,
const FilePath& file_path,
scoped_ptr<DriveEntryProto> entry_proto);
@@ -152,19 +152,19 @@ class GDataSyncClient : public GDataFileSystemInterface::Observer,
const DriveCacheEntry& cache_entry);
// Called when an existing cache entry and the local files are removed.
- void OnRemove(GDataFileError error,
+ void OnRemove(DriveFileError error,
const std::string& resource_id,
const std::string& md5);
// Called when a file is pinned.
- void OnPinned(GDataFileError error,
+ void OnPinned(DriveFileError error,
const std::string& resource_id,
const std::string& md5);
// Called when the file for |resource_id| is fetched.
// Calls DoSyncLoop() to go back to the sync loop.
void OnFetchFileComplete(const SyncTask& sync_task,
- GDataFileError error,
+ DriveFileError error,
const FilePath& local_path,
const std::string& ununsed_mime_type,
DriveFileType file_type);
@@ -172,7 +172,7 @@ class GDataSyncClient : public GDataFileSystemInterface::Observer,
// Called when the file for |resource_id| is uploaded.
// Calls DoSyncLoop() to go back to the sync loop.
void OnUploadFileComplete(const std::string& resource_id,
- GDataFileError error);
+ DriveFileError error);
// chromeos::NetworkLibrary::NetworkManagerObserver override.
virtual void OnNetworkManagerChanged(
« no previous file with comments | « chrome/browser/chromeos/gdata/gdata_protocol_handler.cc ('k') | chrome/browser/chromeos/gdata/gdata_sync_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698