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

Unified Diff: chrome/browser/chromeos/gdata/mock_gdata_documents_service.h

Issue 10830300: Add GetFilelist/GetFile operations for Drive V2 API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix for comments. Created 8 years, 4 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/chromeos/gdata/gdata_documents_service.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/gdata/mock_gdata_documents_service.h
diff --git a/chrome/browser/chromeos/gdata/mock_gdata_documents_service.h b/chrome/browser/chromeos/gdata/mock_gdata_documents_service.h
index bb2460d7cd195bd979cd52c3232ab2e0dde11c32..883e434e3dad430e4d468d08eb3333eaad132fed 100644
--- a/chrome/browser/chromeos/gdata/mock_gdata_documents_service.h
+++ b/chrome/browser/chromeos/gdata/mock_gdata_documents_service.h
@@ -34,11 +34,16 @@ class MockDocumentsService : public DocumentsServiceInterface {
const std::string& search_string,
const std::string& directory_resource_id,
const GetDataCallback& callback));
+ MOCK_METHOD3(GetFilelist, void(const GURL& feed_url,
+ const std::string& search_string,
+ const GetDataCallback& callback));
MOCK_METHOD3(GetChangelist, void(const GURL& feed_url,
int64 start_changestamp,
const GetDataCallback& callback));
MOCK_METHOD2(GetDocumentEntry, void(const std::string& resource_id,
const GetDataCallback& callback));
+ MOCK_METHOD2(GetFile, void(const std::string& file_id,
+ const GetDataCallback& callback));
MOCK_METHOD1(GetAccountMetadata, void(const GetDataCallback& callback));
MOCK_METHOD1(GetAboutResource, void(const GetDataCallback& callback));
MOCK_METHOD1(GetApplicationList, void(const GetDataCallback& callback));
« no previous file with comments | « chrome/browser/chromeos/gdata/gdata_documents_service.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698