OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ProfileInfo
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/chrome/browser/profiles/
profile_manager.h
224
struct
ProfileInfo
{
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
> > ProfilesInfoMap
[
all
...]
profile_manager.cc
408
// Create the profile if needed and collect its
ProfileInfo
.
410
ProfileInfo
* info = NULL;
555
ProfileInfo
* profile_info = GetProfileInfoByPath(path);
[
all
...]
Completed in 177 milliseconds