| Index: chrome/browser/profiles/profile_manager.h
|
| ===================================================================
|
| --- chrome/browser/profiles/profile_manager.h (revision 97074)
|
| +++ chrome/browser/profiles/profile_manager.h (working copy)
|
| @@ -26,7 +26,6 @@
|
| class FilePath;
|
| class NewProfileLauncher;
|
| class ProfileInfoCache;
|
| -class ProfileInfoInterface;
|
|
|
| class ProfileManagerObserver {
|
| public:
|
| @@ -158,15 +157,10 @@
|
| // Register multi-profile related preferences in Local State.
|
| static void RegisterPrefs(PrefService* prefs);
|
|
|
| - // Returns a ProfileInfoInterface object which can be used to get information
|
| + // Returns a ProfileInfoCache object which can be used to get information
|
| // about profiles without having to load them from disk.
|
| - virtual ProfileInfoInterface& GetProfileInfo();
|
| + ProfileInfoCache& GetProfileInfoCache();
|
|
|
| - // Returns the ProfileInfoInterface as a mutable ProfileInfoCache. This should
|
| - // only be used when you need the full set of methods. Wherever possible use
|
| - // the ProfileInfoInterface.
|
| - virtual ProfileInfoCache& GetMutableProfileInfo();
|
| -
|
| // Schedules the profile at the given path to be deleted on shutdown.
|
| void ScheduleProfileForDeletion(const FilePath& profile_dir);
|
|
|
|
|