| 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,
|
|
|