Home | History | Annotate | Download | only in profiles

Lines Matching full:profile

5 #include "chrome/browser/profiles/profile.h"
76 // A pointer to the request context for the default profile. See comments on
77 // Profile::GetDefaultRequestContext.
78 net::URLRequestContextGetter* Profile::default_request_context_;
87 Profile::Profile()
93 const char* Profile::kProfileKey = "__PROFILE__";
96 const ProfileId Profile::kInvalidProfileId = static_cast<ProfileId>(0);
99 void Profile::RegisterUserPrefs(PrefService* prefs) {
124 // local state and user's profile. For other platforms we maintain
127 // in user's profile for other platforms as well.
135 net::URLRequestContextGetter* Profile::GetDefaultRequestContext() {
139 bool Profile::IsGuestSession() {
149 bool Profile::IsSyncAccessible() {
156 // OffTheRecordProfileImpl is a profile subclass that wraps an existing profile
160 class OffTheRecordProfileImpl : public Profile,
163 explicit OffTheRecordProfileImpl(Profile* real_profile)
178 // Profile member from a thread other than the UI thread, so we need to
191 Source<Profile>(this),
220 virtual Profile* GetOffTheRecordProfile() {
233 virtual Profile* GetOriginalProfile() {
282 // profile's version.
326 NOTREACHED() << "This profile is OffTheRecord";
338 NOTREACHED() << "This profile is OffTheRecord";
350 NOTREACHED() << "This profile is OffTheRecord";
362 NOTREACHED() << "This profile is OffTheRecord";
446 // Retrieve the host content settings map of the parent profile in order to
493 // We never have a profile sync service.
530 virtual bool IsSameProfile(Profile* profile) {
531 return (profile == this) || (profile == profile_);
586 // Just return the real profile resource cache.
608 // The incognito profile shouldn't have Chrome OS's preferences.
609 // The preferences are associated with the regular user profile.
685 // The real underlying profile.
686 Profile* profile_;
707 // We don't want SSLHostState from the OTR profile to leak back to the main
708 // profile because then the main profile would learn some of the host names
713 // profile.
725 // The main database tracker for this profile.
733 // The file_system context for this profile.
751 explicit GuestSessionProfile(Profile* real_profile)
770 Profile* Profile::CreateOffTheRecordProfile() {
772 if (Profile::IsGuestSession())