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

Unified Diff: chrome/browser/chromeos/gdata/gdata_documents_service.cc

Issue 10383248: gdata: Add ability to fetch documents in a particular directory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix the build Created 8 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
Index: chrome/browser/chromeos/gdata/gdata_documents_service.cc
diff --git a/chrome/browser/chromeos/gdata/gdata_documents_service.cc b/chrome/browser/chromeos/gdata/gdata_documents_service.cc
index 41c2bced92c6eb07d32c322f9b4f22f9ef74d8cd..d7f0765f277b1307333b551f6b26baabd687ecc8 100644
--- a/chrome/browser/chromeos/gdata/gdata_documents_service.cc
+++ b/chrome/browser/chromeos/gdata/gdata_documents_service.cc
@@ -103,6 +103,7 @@ void DocumentsService::Authenticate(const AuthStatusCallback& callback) {
void DocumentsService::GetDocuments(const GURL& url,
int start_changestamp,
const std::string& search_query,
+ const std::string& directory_resource_id,
const GetDataCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
@@ -111,6 +112,7 @@ void DocumentsService::GetDocuments(const GURL& url,
profile_,
start_changestamp,
search_query,
+ directory_resource_id,
callback);
if (!url.is_empty())
operation->SetUrl(url);

Powered by Google App Engine
This is Rietveld 408576698