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

Unified Diff: chrome/browser/chromeos/drive/fake_file_system.cc

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/chromeos/drive/fake_file_system.cc
diff --git a/chrome/browser/chromeos/drive/fake_file_system.cc b/chrome/browser/chromeos/drive/fake_file_system.cc
index 0d5894ac613b5d1de18ad20b5bf8451f8cd12ac4..e97ec6629a3df7022bdbe6e4fde920662570fca6 100644
--- a/chrome/browser/chromeos/drive/fake_file_system.cc
+++ b/chrome/browser/chromeos/drive/fake_file_system.cc
@@ -271,7 +271,7 @@ void FakeFileSystem::GetFileContentAfterGetFileResource(
const GetFileContentInitializedCallback& initialized_callback,
const google_apis::GetContentCallback& get_content_callback,
const FileOperationCallback& completion_callback,
- google_apis::GDataErrorCode gdata_error,
+ google_apis::DriveApiErrorCode gdata_error,
scoped_ptr<google_apis::FileResource> gdata_entry) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
@@ -316,7 +316,7 @@ void FakeFileSystem::GetFileContentAfterGetFileResource(
void FakeFileSystem::GetFileContentAfterDownloadFile(
const FileOperationCallback& completion_callback,
- google_apis::GDataErrorCode gdata_error,
+ google_apis::DriveApiErrorCode gdata_error,
const base::FilePath& temp_file) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
completion_callback.Run(GDataToFileError(gdata_error));
@@ -325,7 +325,7 @@ void FakeFileSystem::GetFileContentAfterDownloadFile(
// Implementation of GetResourceEntry.
void FakeFileSystem::GetResourceEntryAfterGetAboutResource(
const GetResourceEntryCallback& callback,
- google_apis::GDataErrorCode gdata_error,
+ google_apis::DriveApiErrorCode gdata_error,
scoped_ptr<google_apis::AboutResource> about_resource) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
@@ -366,7 +366,7 @@ void FakeFileSystem::GetResourceEntryAfterGetParentEntryInfo(
void FakeFileSystem::GetResourceEntryAfterGetFileList(
const base::FilePath& base_name,
const GetResourceEntryCallback& callback,
- google_apis::GDataErrorCode gdata_error,
+ google_apis::DriveApiErrorCode gdata_error,
scoped_ptr<google_apis::FileList> file_list) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));

Powered by Google App Engine
This is Rietveld 408576698