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

Unified Diff: chrome/browser/drive/dummy_drive_service.cc

Issue 305913002: drive: Replace GetResourceListCallback in DriveServiceInterface with FileListCallback (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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
« no previous file with comments | « chrome/browser/drive/dummy_drive_service.h ('k') | chrome/browser/drive/fake_drive_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/drive/dummy_drive_service.cc
diff --git a/chrome/browser/drive/dummy_drive_service.cc b/chrome/browser/drive/dummy_drive_service.cc
index 0094ddf88dbd6e0f9a01bfb568e5eacbbf440ca3..9a841f49cefe4134b929e22005ae0ecfe3920cc8 100644
--- a/chrome/browser/drive/dummy_drive_service.cc
+++ b/chrome/browser/drive/dummy_drive_service.cc
@@ -15,9 +15,9 @@ using google_apis::CancelCallback;
using google_apis::ChangeListCallback;
using google_apis::DownloadActionCallback;
using google_apis::EntryActionCallback;
+using google_apis::FileListCallback;
using google_apis::GetContentCallback;
using google_apis::GetResourceEntryCallback;
-using google_apis::GetResourceListCallback;
using google_apis::GetShareUrlCallback;
using google_apis::InitiateUploadCallback;
using google_apis::ProgressCallback;
@@ -57,21 +57,21 @@ std::string DummyDriveService::GetRootResourceId() const {
return "dummy_root";
}
-CancelCallback DummyDriveService::GetAllResourceList(
- const GetResourceListCallback& callback) { return CancelCallback(); }
+CancelCallback DummyDriveService::GetAllFileList(
+ const FileListCallback& callback) { return CancelCallback(); }
-CancelCallback DummyDriveService::GetResourceListInDirectory(
+CancelCallback DummyDriveService::GetFileListInDirectory(
const std::string& directory_resource_id,
- const GetResourceListCallback& callback) { return CancelCallback(); }
+ const FileListCallback& callback) { return CancelCallback(); }
CancelCallback DummyDriveService::Search(
const std::string& search_query,
- const GetResourceListCallback& callback) { return CancelCallback(); }
+ const FileListCallback& callback) { return CancelCallback(); }
CancelCallback DummyDriveService::SearchByTitle(
const std::string& title,
const std::string& directory_resource_id,
- const GetResourceListCallback& callback) { return CancelCallback(); }
+ const FileListCallback& callback) { return CancelCallback(); }
CancelCallback DummyDriveService::GetChangeList(
int64 start_changestamp,
@@ -83,7 +83,7 @@ CancelCallback DummyDriveService::GetRemainingChangeList(
CancelCallback DummyDriveService::GetRemainingFileList(
const GURL& next_link,
- const GetResourceListCallback& callback) { return CancelCallback(); }
+ const FileListCallback& callback) { return CancelCallback(); }
CancelCallback DummyDriveService::GetResourceEntry(
const std::string& resource_id,
« no previous file with comments | « chrome/browser/drive/dummy_drive_service.h ('k') | chrome/browser/drive/fake_drive_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698