| Index: chrome/browser/sync/glue/sync_backend_host.cc
|
| diff --git a/chrome/browser/sync/glue/sync_backend_host.cc b/chrome/browser/sync/glue/sync_backend_host.cc
|
| index f39091d59512f69015dec31dd9ea1736e7315097..eb1b5ca1f531e16030aac6381f75cfaa9870dcfd 100644
|
| --- a/chrome/browser/sync/glue/sync_backend_host.cc
|
| +++ b/chrome/browser/sync/glue/sync_backend_host.cc
|
| @@ -1386,7 +1386,7 @@ void SyncBackendHost::Core::DoRetryConfiguration(
|
| void SyncBackendHost::Core::DeleteSyncDataFolder() {
|
| DCHECK_EQ(base::MessageLoop::current(), sync_loop_);
|
| if (file_util::DirectoryExists(sync_data_folder_path_)) {
|
| - if (!file_util::Delete(sync_data_folder_path_, true))
|
| + if (!base::Delete(sync_data_folder_path_, true))
|
| SLOG(DFATAL) << "Could not delete the Sync Data folder.";
|
| }
|
| }
|
|
|