Chromium Code Reviews| 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..e65ab4efa93be3f73ffe44a3e2a94ad3cf2d0cc5 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> |
|
tapted
2016/01/31 23:04:37
nit: not needed
|
| + |
| #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.h" |
| class Profile; |
| @@ -15,7 +17,8 @@ class Profile; |
| class ProfileStore { |
| public: |
| virtual ~ProfileStore() {} |
| - virtual void AddProfileObserver(ProfileInfoCacheObserver* observer) = 0; |
| + virtual void AddProfileObserver( |
| + ProfileAttributesStorage::Observer* observer) = 0; |
| // Loads the profile at |path| and calls |callback| when its done. A NULL |
| // Profile* represents an error. |