Home | History | Annotate | Download | only in instant

Lines Matching full:profile

18 #include "chrome/browser/profiles/profile.h"
38 InstantController::InstantController(Profile* profile,
47 PrefService* service = profile->GetPrefs();
68 void InstantController::RecordMetrics(Profile* profile) {
69 if (!IsEnabled(profile))
72 PrefService* service = profile->GetPrefs();
89 bool InstantController::IsEnabled(Profile* profile) {
90 PrefService* prefs = profile->GetPrefs();
95 void InstantController::Enable(Profile* profile) {
96 PromoCounter* promo_counter = profile->GetInstantPromoCounter();
100 PrefService* service = profile->GetPrefs();
112 void InstantController::Disable(Profile* profile) {
113 PrefService* service = profile->GetPrefs();
114 if (!service || !IsEnabled(profile))
681 TemplateURLModel* model = tab_contents_->profile()->GetTemplateURLModel();