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

Unified Diff: chrome/browser/chromeos/drive/fake_file_system.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/chromeos/drive/fake_file_system.h
diff --git a/chrome/browser/chromeos/drive/fake_file_system.h b/chrome/browser/chromeos/drive/fake_file_system.h
index 2fe21371828a4d68025bb891fb894956d79a256b..cc25821989a09a6864b0dc5bb83f7c2eae173e40 100644
--- a/chrome/browser/chromeos/drive/fake_file_system.h
+++ b/chrome/browser/chromeos/drive/fake_file_system.h
@@ -13,7 +13,7 @@
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/chromeos/drive/file_errors.h"
#include "chrome/browser/chromeos/drive/file_system_interface.h"
-#include "google_apis/drive/gdata_errorcode.h"
+#include "google_apis/drive/drive_api_error_codes.h"
namespace google_apis {
@@ -139,11 +139,11 @@ class FakeFileSystem : public FileSystemInterface {
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);
void GetFileContentAfterDownloadFile(
const FileOperationCallback& completion_callback,
- google_apis::GDataErrorCode gdata_error,
+ google_apis::DriveApiErrorCode gdata_error,
const base::FilePath& temp_file);
// Helpers of GetResourceEntry.
@@ -159,7 +159,7 @@ class FakeFileSystem : public FileSystemInterface {
// file cannot be taken with the suffixed name.
void GetResourceEntryAfterGetAboutResource(
const GetResourceEntryCallback& callback,
- google_apis::GDataErrorCode gdata_error,
+ google_apis::DriveApiErrorCode gdata_error,
scoped_ptr<google_apis::AboutResource> about_resource);
void GetResourceEntryAfterGetParentEntryInfo(
const base::FilePath& base_name,
@@ -169,7 +169,7 @@ class FakeFileSystem : public FileSystemInterface {
void 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);
DriveServiceInterface* drive_service_; // Not owned.

Powered by Google App Engine
This is Rietveld 408576698