| 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.
|
| FinalizeSync(token.Pass(), status);
|
| }
|
|
|
|
|