Chromium Code Reviews| Index: chrome/browser/sync_file_system/drive_file_sync_service.h |
| diff --git a/chrome/browser/sync_file_system/drive_file_sync_service.h b/chrome/browser/sync_file_system/drive_file_sync_service.h |
| index ad215642b19a2b9efe977d242b5166551f32c430..cb0c22f730d12fa8d79407f1351605a49e16de49 100644 |
| --- a/chrome/browser/sync_file_system/drive_file_sync_service.h |
| +++ b/chrome/browser/sync_file_system/drive_file_sync_service.h |
| @@ -280,7 +280,7 @@ class DriveFileSyncService |
| scoped_ptr<ProcessRemoteChangeParam> param, |
| fileapi::SyncStatusCode status); |
| - void AppendNewRemoteChange(const GURL& origin, |
| + bool AppendNewRemoteChange(const GURL& origin, |
|
kinuko
2012/12/04 10:23:27
Can you add a short comment when this returns true
tzik
2012/12/04 10:32:03
Done. Wrote comments in .h.
|
| const google_apis::DocumentEntry& entry, |
| int64 changestamp, |
| RemoteSyncType sync_type); |
| @@ -301,6 +301,7 @@ class DriveFileSyncService |
| void FetchChangesForIncrementalSync(); |
| void DidFetchChangesForIncrementalSync( |
| scoped_ptr<TaskToken> token, |
| + bool queue_was_updated, |
|
kinuko
2012/12/04 10:23:27
had_new_changes maybe? (the term 'queue' sounds a
tzik
2012/12/04 10:32:03
Done.
|
| google_apis::GDataErrorCode error, |
| scoped_ptr<google_apis::DocumentFeed> changes); |
| bool GetOriginForEntry(const google_apis::DocumentEntry& entry, GURL* origin); |