Home | History | Annotate | Download | only in cloud

Lines Matching full:profile

11 #include "chrome/browser/profiles/profile.h"
24 Profile* profile) {
25 return GetInstance()->GetManagerForProfile(profile);
30 UserCloudPolicyManagerFactory::CreateForProfile(Profile* profile,
32 return GetInstance()->CreateManagerForProfile(profile, force_immediate_load);
43 Profile* profile) {
44 // Get the manager for the original profile, since the PolicyService is
45 // also shared between the incognito Profile and the original Profile.
46 ManagerMap::const_iterator it = managers_.find(profile->GetOriginalProfile());
52 Profile* profile,
58 scoped_ptr<UserCloudPolicyStore> store(UserCloudPolicyStore::Create(profile));
62 new UserCloudPolicyManager(profile, store.Pass()));
69 Profile* profile = static_cast<Profile*>(context);
70 if (profile->IsOffTheRecord())
72 UserCloudPolicyManager* manager = GetManagerForProfile(profile);
80 content::BrowserContext* profile) {
84 content::BrowserContext* profile) {
87 void UserCloudPolicyManagerFactory::Register(Profile* profile,
89 UserCloudPolicyManager*& entry = managers_[profile];
95 Profile* profile,
97 ManagerMap::iterator entry = managers_.find(profile);