Home | History | Annotate | Download | only in profiles

Lines Matching full:profile

10 #include "chrome/browser/profiles/profile.h"
26 Profile* profile) {
28 if (profile->IsOffTheRecord()) {
30 profile = profile->GetOriginalProfile();
40 std::map<Profile*, ProfileKeyedService*>::iterator it =
41 mapping_.find(profile);
49 service = factory_(profile);
51 service = BuildServiceInstanceFor(profile);
54 Associate(profile, service);
62 void ProfileKeyedServiceFactory::Associate(Profile* profile,
64 DCHECK(mapping_.find(profile) == mapping_.end());
65 mapping_.insert(std::make_pair(profile, service));
76 void ProfileKeyedServiceFactory::ProfileShutdown(Profile* profile) {
77 std::map<Profile*, ProfileKeyedService*>::iterator it =
78 mapping_.find(profile);
83 void ProfileKeyedServiceFactory::ProfileDestroyed(Profile* profile) {
84 std::map<Profile*, ProfileKeyedService*>::iterator it =
85 mapping_.find(profile);