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

Unified Diff: chrome/browser/chromeos/extensions/file_browser_private_api.h

Issue 10634020: [FileManager] Do drive search incrementally (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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 | « no previous file | chrome/browser/chromeos/extensions/file_browser_private_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/extensions/file_browser_private_api.h
diff --git a/chrome/browser/chromeos/extensions/file_browser_private_api.h b/chrome/browser/chromeos/extensions/file_browser_private_api.h
index bfc897249b23cb1d0aaec2104f0deeb2520f923f..6e58c8420579595804b97203e574ed53e8c148e0 100644
--- a/chrome/browser/chromeos/extensions/file_browser_private_api.h
+++ b/chrome/browser/chromeos/extensions/file_browser_private_api.h
@@ -648,8 +648,10 @@ class SearchDriveFunction : public AsyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("fileBrowserPrivate.searchGData");
+ SearchDriveFunction();
+
protected:
- virtual ~SearchDriveFunction() {}
+ virtual ~SearchDriveFunction();
virtual bool RunImpl() OVERRIDE;
@@ -660,10 +662,12 @@ class SearchDriveFunction : public AsyncExtensionFunction {
const GURL& file_system_url);
// Callback for gdata::SearchAsync called after file system is opened.
void OnSearch(gdata::GDataFileError error,
+ const GURL& next_feed,
scoped_ptr<std::vector<gdata::SearchResultInfo> > result_paths);
// Query for which the search is being performed.
std::string query_;
+ std::string next_feed_;
// Information about remote file system we will need to create file entries
// to represent search results.
std::string file_system_name_;
« no previous file with comments | « no previous file | chrome/browser/chromeos/extensions/file_browser_private_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698