| Index: chrome/browser/ui/app_list/profile_store.h
|
| diff --git a/chrome/browser/ui/app_list/profile_store.h b/chrome/browser/ui/app_list/profile_store.h
|
| index 90bd740fe517c12ea686188b065f0025196cfe79..ca7c6925bff8348df7a9c4c785234497694b66f4 100644
|
| --- a/chrome/browser/ui/app_list/profile_store.h
|
| +++ b/chrome/browser/ui/app_list/profile_store.h
|
| @@ -5,9 +5,11 @@
|
| #ifndef CHROME_BROWSER_UI_APP_LIST_PROFILE_STORE_H_
|
| #define CHROME_BROWSER_UI_APP_LIST_PROFILE_STORE_H_
|
|
|
| +#include <string>
|
| +
|
| #include "base/callback_forward.h"
|
| #include "base/files/file_path.h"
|
| -#include "chrome/browser/profiles/profile_info_cache_observer.h"
|
| +#include "chrome/browser/profiles/profile_attributes_storage_observer.h"
|
|
|
| class Profile;
|
|
|
| @@ -15,7 +17,8 @@ class Profile;
|
| class ProfileStore {
|
| public:
|
| virtual ~ProfileStore() {}
|
| - virtual void AddProfileObserver(ProfileInfoCacheObserver* observer) = 0;
|
| + virtual void AddProfileObserver(
|
| + ProfileAttributesStorageObserver* observer) = 0;
|
|
|
| // Loads the profile at |path| and calls |callback| when its done. A NULL
|
| // Profile* represents an error.
|
|
|