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

Unified Diff: chrome/browser/google_apis/drive_api_service.h

Issue 13602003: Add new methods to DriveServiceInterface. These will replace GetResourceList. (Closed) Base URL: http://git.chromium.org/chromium/src.git@webkit_master
Patch Set: Created 7 years, 9 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 | « no previous file | chrome/browser/google_apis/drive_api_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/google_apis/drive_api_service.h
diff --git a/chrome/browser/google_apis/drive_api_service.h b/chrome/browser/google_apis/drive_api_service.h
index 4c0e033842f5368c65f9921b74faad947264ebb6..1d0b424999f015bff5f9015c89f7c7a2e1155202 100644
--- a/chrome/browser/google_apis/drive_api_service.h
+++ b/chrome/browser/google_apis/drive_api_service.h
@@ -72,10 +72,27 @@ class DriveAPIService : public DriveServiceInterface,
bool shared_with_me,
const std::string& directory_resource_id,
const GetResourceListCallback& callback) OVERRIDE;
+ virtual void GetAllResourceList(
+ const GetResourceListCallback& callback) OVERRIDE;
+ virtual void GetResourceListInDirectory(
+ const std::string& directory_resource_id,
+ const GetResourceListCallback& callback) OVERRIDE;
+ virtual void Search(
+ const std::string& search_query,
+ const GetResourceListCallback& callback) OVERRIDE;
+ virtual void SearchInDirectory(
+ const std::string& search_query,
+ const std::string& directory_resource_id,
+ const GetResourceListCallback& callback) OVERRIDE;
+ virtual void GetChangeList(
+ int64 start_changestamp,
+ const GetResourceListCallback& callback) OVERRIDE;
+ virtual void ContinueGetResourceList(
+ const GURL& override_url,
+ const GetResourceListCallback& callback) OVERRIDE;
virtual void GetResourceEntry(
const std::string& resource_id,
const GetResourceEntryCallback& callback) OVERRIDE;
-
virtual void GetAccountMetadata(
const GetAccountMetadataCallback& callback) OVERRIDE;
virtual void GetAboutResource(
« no previous file with comments | « no previous file | chrome/browser/google_apis/drive_api_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698