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

Unified Diff: chrome/browser/sync_file_system/sync_file_system_service.cc

Issue 11421125: Implement polling part of DriveFileSyncService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: s/NotifyRemoteChangeAvailable/NotifyRemoteChangeQueueUpdated/ Created 8 years 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/sync_file_system/sync_file_system_service.cc
diff --git a/chrome/browser/sync_file_system/sync_file_system_service.cc b/chrome/browser/sync_file_system/sync_file_system_service.cc
index 6b67ef7978b2d2b4680b1cdf6a510f6c4faa93b6..2f0ed31d53920f91fbc370c0529382555b12d287 100644
--- a/chrome/browser/sync_file_system/sync_file_system_service.cc
+++ b/chrome/browser/sync_file_system/sync_file_system_service.cc
@@ -451,7 +451,7 @@ void SyncFileSystemService::OnLocalChangeAvailable(int64 pending_changes) {
AsWeakPtr()));
}
-void SyncFileSystemService::OnRemoteChangeAvailable(int64 pending_changes) {
+void SyncFileSystemService::OnRemoteChangeQueueUpdated(int64 pending_changes) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK_GE(pending_changes, 0);
DVLOG(1) << "OnRemoteChangeAvailable: " << pending_changes;
kinuko 2012/12/04 06:59:17 nit: can you also update this log msg?
tzik 2012/12/04 07:06:09 Done.

Powered by Google App Engine
This is Rietveld 408576698