Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(393)

Unified Diff: chrome/browser/ui/app_list/profile_store.h

Issue 1631373003: Refactor ProfileInfoCache in c/b/ui/app_list (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698