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

Unified Diff: chrome/browser/chromeos/gdata/gdata_download_observer.cc

Issue 10877006: Rename GDataErrorCode to DriveErrorCode, GDataFileError to DriveFileError (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase. 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_download_observer.cc
diff --git a/chrome/browser/chromeos/gdata/gdata_download_observer.cc b/chrome/browser/chromeos/gdata/gdata_download_observer.cc
index 6249a56af52d878bd0cb1785fb4281ba90e0de86..7c82343ea5528af7e5e8199352d6b9766f3bf1c4 100644
--- a/chrome/browser/chromeos/gdata/gdata_download_observer.cc
+++ b/chrome/browser/chromeos/gdata/gdata_download_observer.cc
@@ -135,9 +135,9 @@ void SubstituteGDataDownloadPathInternal(Profile* profile,
// Callback for GDataFileSystem::CreateDirectory.
void OnCreateDirectory(const base::Closure& substitute_callback,
- GDataFileError error) {
+ DriveFileError error) {
DVLOG(1) << "OnCreateDirectory " << error;
- if (error == GDATA_FILE_OK) {
+ if (error == DRIVE_FILE_OK) {
substitute_callback.Run();
} else {
// TODO(achuith): Handle this.
@@ -149,15 +149,15 @@ void OnCreateDirectory(const base::Closure& substitute_callback,
void OnEntryFound(Profile* profile,
const FilePath& gdata_dir_path,
const base::Closure& substitute_callback,
- GDataFileError error,
+ DriveFileError error,
scoped_ptr<DriveEntryProto> entry_proto) {
- if (error == GDATA_FILE_ERROR_NOT_FOUND) {
+ if (error == DRIVE_FILE_ERROR_NOT_FOUND) {
// Destination gdata directory doesn't exist, so create it.
const bool is_exclusive = false, is_recursive = true;
GetSystemService(profile)->file_system()->CreateDirectory(
gdata_dir_path, is_exclusive, is_recursive,
base::Bind(&OnCreateDirectory, substitute_callback));
- } else if (error == GDATA_FILE_OK) {
+ } else if (error == DRIVE_FILE_OK) {
substitute_callback.Run();
} else {
// TODO(achuith): Handle this.
@@ -169,7 +169,7 @@ void OnEntryFound(Profile* profile,
void OnAuthenticate(Profile* profile,
const FilePath& gdata_path,
const base::Closure& substitute_callback,
- GDataErrorCode error,
+ DriveErrorCode error,
const std::string& token) {
DVLOG(1) << "OnAuthenticate";
@@ -505,7 +505,7 @@ void GDataDownloadObserver::CreateUploadFileInfo(DownloadItem* download) {
void GDataDownloadObserver::CreateUploadFileInfoAfterCheckExistence(
int32 download_id,
scoped_ptr<UploadFileInfo> upload_file_info,
- GDataFileError error,
+ DriveFileError error,
scoped_ptr<DriveEntryProto> entry_proto) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(upload_file_info.get());
@@ -559,7 +559,7 @@ void GDataDownloadObserver::CreateUploadFileInfoAfterCheckExistence(
void GDataDownloadObserver::CreateUploadFileInfoAfterCheckTargetDir(
int32 download_id,
scoped_ptr<UploadFileInfo> upload_file_info,
- GDataFileError error,
+ DriveFileError error,
scoped_ptr<DriveEntryProto> entry_proto) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(upload_file_info.get());
@@ -609,7 +609,7 @@ void GDataDownloadObserver::StartUpload(
void GDataDownloadObserver::OnUploadComplete(
int32 download_id,
- GDataFileError error,
+ DriveFileError error,
scoped_ptr<UploadFileInfo> upload_file_info) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(upload_file_info.get());

Powered by Google App Engine
This is Rietveld 408576698