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

Unified Diff: chrome/browser/chromeos/drive/file_system/search_operation.h

Issue 318873003: drive: Stop returning ResourceList from JobScheduler (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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/file_system/search_operation.h
diff --git a/chrome/browser/chromeos/drive/file_system/search_operation.h b/chrome/browser/chromeos/drive/file_system/search_operation.h
index 1f2c691bafb0e4943490708adf921e173fe9f961..09f6ca7123c65d7acd272f102250a74cafacd2c3 100644
--- a/chrome/browser/chromeos/drive/file_system/search_operation.h
+++ b/chrome/browser/chromeos/drive/file_system/search_operation.h
@@ -18,8 +18,7 @@ class SequencedTaskRunner;
} // namespace base
namespace google_apis {
-class ResourceEntry;
-class ResourceList;
+class FileList;
} // namespace google_apis
namespace drive {
@@ -54,11 +53,11 @@ class SearchOperation {
const SearchCallback& callback);
private:
- // Part of Search(), called after the ResourceList is fetched from the server.
- void SearchAfterGetResourceList(
+ // Part of Search(), called after the FileList is fetched from the server.
+ void SearchAfterGetFileList(
const SearchCallback& callback,
google_apis::GDataErrorCode gdata_error,
- scoped_ptr<google_apis::ResourceList> resource_list);
+ scoped_ptr<google_apis::FileList> file_list);
// Part of Search(), called after |result| is filled on the blocking pool.
void SearchAfterResolveSearchResult(
« no previous file with comments | « chrome/browser/chromeos/drive/directory_loader.cc ('k') | chrome/browser/chromeos/drive/file_system/search_operation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698