| 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 78718fdee09d1e41a3ce392f57db6072901cc5ec..8c7828e167043a609408d23ea84f1d4730eed8f9 100644
|
| --- a/chrome/browser/chromeos/gdata/gdata_wapi_feed_loader.cc
|
| +++ b/chrome/browser/chromeos/gdata/gdata_wapi_feed_loader.cc
|
| @@ -13,6 +13,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/drive_api_parser.h"
|
| #include "chrome/browser/chromeos/gdata/gdata_cache.h"
|
| @@ -137,6 +138,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(
|
| int64 start_changestamp,
|
| int64 root_feed_changestamp,
|
|
|