| 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));
|
|
|
|
|