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

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

Issue 10855034: Drive: Remove gdata_params.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review (#8) fix 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
Index: chrome/browser/chromeos/gdata/gdata_wapi_feed_loader.cc
diff --git a/chrome/browser/chromeos/gdata/gdata_wapi_feed_loader.cc b/chrome/browser/chromeos/gdata/gdata_wapi_feed_loader.cc
index b5eb7cdcbf426b286711427ae47800547a1b2982..d8c9385ebe1cb29e170ad16befcba090aec25cfb 100644
--- a/chrome/browser/chromeos/gdata/gdata_wapi_feed_loader.cc
+++ b/chrome/browser/chromeos/gdata/gdata_wapi_feed_loader.cc
@@ -135,6 +135,20 @@ bool UseLevelDB() {
} // namespace
+LoadRootFeedParams::LoadRootFeedParams(
+ FilePath search_file_path,
+ bool should_load_from_server,
+ const FindEntryCallback& callback)
+ : search_file_path(search_file_path),
+ should_load_from_server(should_load_from_server),
+ load_error(GDATA_FILE_OK),
+ load_start_time(base::Time::Now()),
+ callback(callback) {
+}
+
+LoadRootFeedParams::~LoadRootFeedParams() {
+}
+
GetDocumentsParams::GetDocumentsParams(
int start_changestamp,
int root_feed_changestamp,

Powered by Google App Engine
This is Rietveld 408576698