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

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

Issue 10274002: Add gdata content search (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed satorux's comments Created 8 years, 8 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 813ade9f8316449174c6c4d781fff26fb416b663..830ef014aebefbcba6375cead3f4b6dde93288a0 100644
--- a/chrome/browser/chromeos/gdata/gdata_documents_service.cc
+++ b/chrome/browser/chromeos/gdata/gdata_documents_service.cc
@@ -102,6 +102,7 @@ void DocumentsService::Authenticate(const AuthStatusCallback& callback) {
void DocumentsService::GetDocuments(const GURL& url,
int start_changestamp,
+ const std::string& search_query,
const GetDataCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
@@ -109,6 +110,7 @@ void DocumentsService::GetDocuments(const GURL& url,
new GetDocumentsOperation(operation_registry_.get(),
profile_,
start_changestamp,
+ search_query,
callback);
if (!url.is_empty())
operation->SetUrl(url);

Powered by Google App Engine
This is Rietveld 408576698