Searched defs:ProfileInfo (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/chrome/browser/profiles/
H A Dprofile_manager.h224 struct ProfileInfo { struct in class:ProfileManager
225 ProfileInfo(Profile* profile, bool created);
227 ~ProfileInfo();
239 DISALLOW_COPY_AND_ASSIGN(ProfileInfo);
259 // Registers profile with given info. Returns pointer to created ProfileInfo
261 ProfileInfo* RegisterProfile(Profile* profile, bool created);
263 // Returns ProfileInfo associated with given |path|, registred earlier with
265 ProfileInfo* GetProfileInfoByPath(const base::FilePath& path) const;
331 // Maps profile path to ProfileInfo (if profile has been created). Use
334 typedef std::map<base::FilePath, linked_ptr<ProfileInfo> > ProfilesInfoMa
[all...]
H A Dprofile_manager.cc408 // Create the profile if needed and collect its ProfileInfo.
410 ProfileInfo* info = NULL;
555 ProfileInfo* profile_info = GetProfileInfoByPath(path);
933 ProfileInfo* info = iter->second.get();
1051 ProfileInfo* profile_info = GetProfileInfoByPath(default_profile_dir);
1133 ProfileManager::ProfileInfo* ProfileManager::RegisterProfile(
1136 ProfileInfo* info = new ProfileInfo(profile, created);
1138 std::make_pair(profile->GetPath(), linked_ptr<ProfileInfo>(info)));
1142 ProfileManager::ProfileInfo* ProfileManage
1211 ProfileManager::ProfileInfo::ProfileInfo( function in class:ProfileManager::ProfileInfo
[all...]

Completed in 1512 milliseconds