| Index: chrome/browser/profiles/profile_manager.cc
 | 
| diff --git a/chrome/browser/profiles/profile_manager.cc b/chrome/browser/profiles/profile_manager.cc
 | 
| index 84d0a1bf9615621060a9dc7967d866f4ec5c1ce5..7be5e410698770f015262982dd9329ff8a1fd1fb 100644
 | 
| --- a/chrome/browser/profiles/profile_manager.cc
 | 
| +++ b/chrome/browser/profiles/profile_manager.cc
 | 
| @@ -202,8 +202,8 @@ void ProfileManager::NukeDeletedProfilesFromDisk() {
 | 
|      // Delete both the profile directory and its corresponding cache.
 | 
|      base::FilePath cache_path;
 | 
|      chrome::GetUserCacheDirectory(*it, &cache_path);
 | 
| -    file_util::Delete(*it, true);
 | 
| -    file_util::Delete(cache_path, true);
 | 
| +    base::Delete(*it, true);
 | 
| +    base::Delete(cache_path, true);
 | 
|    }
 | 
|    ProfilesToDelete().clear();
 | 
|  }
 | 
| 
 |