| Index: chrome/browser/profiles/profile_manager.cc
|
| diff --git a/chrome/browser/profiles/profile_manager.cc b/chrome/browser/profiles/profile_manager.cc
|
| index 9a0ed359e027b479444f1de4e679df58d4132974..3dc2f377a61be07a54d5752659e1735a63a22bdd 100644
|
| --- a/chrome/browser/profiles/profile_manager.cc
|
| +++ b/chrome/browser/profiles/profile_manager.cc
|
| @@ -1376,8 +1376,8 @@ void ProfileManager::FinishDeletingProfile(
|
|
|
| ProfileAttributesEntry* entry;
|
| bool has_entry = storage.GetProfileAttributesWithPath(profile_dir, &entry);
|
| - DCHECK(has_entry);
|
| - ProfileMetrics::LogProfileDelete(entry->IsAuthenticated());
|
| + if (has_entry)
|
| + ProfileMetrics::LogProfileDelete(entry->IsAuthenticated());
|
| // Some platforms store passwords in keychains. They should be removed.
|
| scoped_refptr<password_manager::PasswordStore> password_store =
|
| PasswordStoreFactory::GetForProfile(
|
|
|