Index: chrome/browser/sync_file_system/remote_file_sync_service.h |
diff --git a/chrome/browser/sync_file_system/remote_file_sync_service.h b/chrome/browser/sync_file_system/remote_file_sync_service.h |
index 7b2cdede8404cf712af996215a65a4fdaebd94c7..c02c59c45111eaaa0c63e56496e071d81bb2b75a 100644 |
--- a/chrome/browser/sync_file_system/remote_file_sync_service.h |
+++ b/chrome/browser/sync_file_system/remote_file_sync_service.h |
@@ -58,11 +58,12 @@ class RemoteFileSyncService { |
Observer() {} |
virtual ~Observer() {} |
- // This is called when there're one or more remote changes available. |
+ // This is called when RemoteFileSyncService updates its internal queue |
+ // of pending remote changes. |
// |pending_changes_hint| indicates the pending queue length to help sync |
// scheduling but the value may not be accurately reflect the real-time |
// value. |
- virtual void OnRemoteChangeAvailable(int64 pending_changes_hint) = 0; |
+ virtual void OnRemoteChangeQueueUpdated(int64 pending_changes_hint) = 0; |
// This is called when RemoteFileSyncService updates its state. |
virtual void OnRemoteServiceStateUpdated( |