Chromium Code Reviews| Index: chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.cc |
| diff --git a/chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.cc b/chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.cc |
| index 0fd041192d39d4809ead850221627e5c2476c054..e6b7c425a2eb2f93920f143a9914c666e4e33704 100644 |
| --- a/chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.cc |
| +++ b/chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.cc |
| @@ -328,13 +328,6 @@ void RemoteToLocalSyncer::DidGetRemoteMetadata( |
| } |
| status = metadata_database()->UpdateByFileResource(*entry); |
| - // TODO(tzik): Expand this function. |
| - DidUpdateDatabaseForRemoteMetadata(token.Pass(), status); |
| -} |
| - |
| -void RemoteToLocalSyncer::DidUpdateDatabaseForRemoteMetadata( |
| - scoped_ptr<SyncTaskToken> token, |
| - SyncStatusCode status) { |
| if (status != SYNC_STATUS_OK) { |
| SyncCompleted(token.Pass(), status); |
| return; |
| @@ -629,7 +622,6 @@ void RemoteToLocalSyncer::SyncCompleted(scoped_ptr<SyncTaskToken> token, |
| status = metadata_database()->UpdateTracker( |
| dirty_tracker_->tracker_id(), updated_details); |
| - // TODO(tzik): Expand this function. |
|
tzik
2014/09/10 01:38:16
Note: FinalizeSync is called from other places. So
peria
2014/09/10 01:59:01
Acknowledged.
|
| FinalizeSync(token.Pass(), status); |
| } |