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

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

Issue 10827098: Update the number of fetched files more frequently. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Update the number of fetched files more frequently. Created 8 years, 5 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_operations.cc
diff --git a/chrome/browser/chromeos/gdata/gdata_operations.cc b/chrome/browser/chromeos/gdata/gdata_operations.cc
index e08fc52bd11ebfd6d8510e67ba6be019e843115d..61526b07ea5f5180c61b106cd88dc8ad476f269b 100644
--- a/chrome/browser/chromeos/gdata/gdata_operations.cc
+++ b/chrome/browser/chromeos/gdata/gdata_operations.cc
@@ -69,9 +69,9 @@ const char kUploadContentLength[] = "X-Upload-Content-Length: ";
// Use smaller 'page' size while debugging to ensure we hit feed reload
// almost always. Be careful not to use something too small on account that
// have many items because server side 503 error might kick in.
-const int kMaxDocumentsPerFeed = 1000;
+const int kMaxDocumentsPerFeed = 500;
#else
-const int kMaxDocumentsPerFeed = 1000;
+const int kMaxDocumentsPerFeed = 500;
#endif
const char kFeedField[] = "feed";

Powered by Google App Engine
This is Rietveld 408576698