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

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

Issue 10823226: Get AboutResource as account metadata for Drive V2. (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
Index: chrome/browser/chromeos/gdata/gdata_wapi_feed_processor.cc
diff --git a/chrome/browser/chromeos/gdata/gdata_wapi_feed_processor.cc b/chrome/browser/chromeos/gdata/gdata_wapi_feed_processor.cc
index b349f937ff6107a789c5bd38e56da73904765de5..3fc7102e44a4f686f784e7ed0abc3b6dd72b60db 100644
--- a/chrome/browser/chromeos/gdata/gdata_wapi_feed_processor.cc
+++ b/chrome/browser/chromeos/gdata/gdata_wapi_feed_processor.cc
@@ -49,14 +49,14 @@ GDataWapiFeedProcessor::~GDataWapiFeedProcessor() {
GDataFileError GDataWapiFeedProcessor::ApplyFeeds(
const std::vector<DocumentFeed*>& feed_list,
- int start_changestamp,
- int root_feed_changestamp,
+ int64 start_changestamp,
+ int64 root_feed_changestamp,
std::set<FilePath>* changed_dirs) {
bool is_delta_feed = start_changestamp != 0;
directory_service_->set_origin(FROM_SERVER);
- int delta_feed_changestamp = 0;
+ int64 delta_feed_changestamp = 0;
FeedToFileResourceMapUmaStats uma_stats;
FileResourceIdMap file_map;
GDataFileError error = FeedToFileResourceMap(feed_list,
@@ -104,7 +104,7 @@ void GDataWapiFeedProcessor::UpdateFileCountUmaHistograms(
void GDataWapiFeedProcessor::ApplyFeedFromFileUrlMap(
bool is_delta_feed,
- int feed_changestamp,
+ int64 feed_changestamp,
FileResourceIdMap* file_map,
std::set<FilePath>* changed_dirs) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
@@ -257,7 +257,7 @@ GDataDirectory* GDataWapiFeedProcessor::FindDirectoryForNewEntry(
GDataFileError GDataWapiFeedProcessor::FeedToFileResourceMap(
const std::vector<DocumentFeed*>& feed_list,
FileResourceIdMap* file_map,
- int* feed_changestamp,
+ int64* feed_changestamp,
FeedToFileResourceMapUmaStats* uma_stats) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(uma_stats);
« no previous file with comments | « chrome/browser/chromeos/gdata/gdata_wapi_feed_processor.h ('k') | chrome/browser/chromeos/gdata/gdata_wapi_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698