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

Unified Diff: chrome/browser/profiles/profile_manager.h

Issue 7256002: Multi-Profiles: New Profile Setup UI (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: show product logo at bottom Created 9 years, 6 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/profiles/profile_manager.h
diff --git a/chrome/browser/profiles/profile_manager.h b/chrome/browser/profiles/profile_manager.h
index c532a77033fd2779450d8d44fe16ed2c3fb363fc..a2c1c8bcf264c57240c6c01137af85571b3f4fb7 100644
--- a/chrome/browser/profiles/profile_manager.h
+++ b/chrome/browser/profiles/profile_manager.h
@@ -25,6 +25,7 @@
class FilePath;
class NewProfileLauncher;
+class ProfileInfoCache;
class ProfileManagerObserver {
public:
@@ -147,6 +148,8 @@ class ProfileManager : public base::NonThreadSafe,
// Register multi-profile related preferences in Local State.
static void RegisterPrefs(PrefService* prefs);
+ ProfileInfoCache& GetProfileInfoCache();
Miranda Callahan 2011/06/27 16:42:08 add brief descriptive comment.
sail 2011/06/27 17:37:24 Done.
+
protected:
// Does final initial actions.
virtual void DoFinalInit(Profile* profile);
@@ -204,6 +207,8 @@ class ProfileManager : public base::NonThreadSafe,
typedef std::map<FilePath, linked_ptr<ProfileInfo> > ProfilesInfoMap;
ProfilesInfoMap profiles_info_;
+ scoped_ptr<ProfileInfoCache> profile_info_cache_;
+
DISALLOW_COPY_AND_ASSIGN(ProfileManager);
};

Powered by Google App Engine
This is Rietveld 408576698