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..c20afe0be9c745d3b78c51be9804e353bf4d42ad 100644 |
--- a/chrome/browser/chromeos/gdata/gdata_wapi_feed_loader.cc |
+++ b/chrome/browser/chromeos/gdata/gdata_wapi_feed_loader.cc |
@@ -12,6 +12,7 @@ |
#include "base/metrics/histogram.h" |
#include "base/stringprintf.h" |
#include "base/threading/sequenced_worker_pool.h" |
+#include "base/values.h" |
#include "chrome/browser/chromeos/gdata/drive_webapps_registry.h" |
#include "chrome/browser/chromeos/gdata/gdata_cache.h" |
#include "chrome/browser/chromeos/gdata/gdata_documents_service.h" |
@@ -135,6 +136,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, |