Home | History | Annotate | Download | only in extensions

Lines Matching full:profile

16 #include "chrome/browser/profiles/profile.h"
47 void DispatchEvent(Profile* profile,
50 if (profile && profile->GetExtensionEventRouter()) {
51 profile->GetExtensionEventRouter()->DispatchEventToRenderers(
52 event_name, json_args, profile, GURL());
75 DispatchEvent(tab_contents->profile(), keys::kOnBeforeNavigate, json_args);
105 DispatchEvent(tab_contents->profile(), keys::kOnCommitted, json_args);
125 DispatchEvent(tab_contents->profile(), keys::kOnDOMContentLoaded, json_args);
145 DispatchEvent(tab_contents->profile(), keys::kOnCompleted, json_args);
150 Profile* profile,
164 DispatchEvent(profile, keys::kOnBeforeRetarget, json_args);
288 tab_contents->profile(),
357 DispatchEvent(tab_contents()->profile(), keys::kOnErrorOccurred, json_args);
396 Profile* profile = tab_contents()->profile();
398 if (!profile->HasOffTheRecordProfile()) {
402 profile = profile->GetOffTheRecordProfile();
405 profile,