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 549315bd300c50e03de71afbb03f119e6b163d52..935aaff5c8dfd70857cd54c3ad46430a0a96bc9a 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); |
} |