| Index: chrome/browser/ui/app_list/test/fake_profile_store.cc
|
| diff --git a/chrome/browser/ui/app_list/test/fake_profile_store.cc b/chrome/browser/ui/app_list/test/fake_profile_store.cc
|
| index b31f68158445f24ad06fa89c7680b2aedac00711..1bda66adff93b9d71f0d187b91aff383821293fb 100644
|
| --- a/chrome/browser/ui/app_list/test/fake_profile_store.cc
|
| +++ b/chrome/browser/ui/app_list/test/fake_profile_store.cc
|
| @@ -28,15 +28,15 @@ void FakeProfileStore::LoadProfile(Profile* profile) {
|
|
|
| void FakeProfileStore::RemoveProfile(Profile* profile) {
|
| base::FilePath path(profile->GetPath());
|
| - FOR_EACH_OBSERVER(ProfileInfoCacheObserver, observer_list_,
|
| + FOR_EACH_OBSERVER(ProfileAttributesStorage::Observer, observer_list_,
|
| OnProfileWillBeRemoved(path));
|
| loaded_profiles_.erase(path);
|
| - FOR_EACH_OBSERVER(ProfileInfoCacheObserver, observer_list_,
|
| + FOR_EACH_OBSERVER(ProfileAttributesStorage::Observer, observer_list_,
|
| OnProfileWasRemoved(path, base::string16()));
|
| }
|
|
|
| void FakeProfileStore::AddProfileObserver(
|
| - ProfileInfoCacheObserver* observer) {
|
| + ProfileAttributesStorage::Observer* observer) {
|
| observer_list_.AddObserver(observer);
|
| }
|
|
|
|
|