Home | History | Annotate | Download | only in extensions

Lines Matching full:profile

21 #include "chrome/browser/profiles/profile.h"
48 static void CreateNewPollTask(Profile* profile);
49 static IdleState ThrottledCalculateIdleState(int threshold, Profile* profile);
54 explicit ExtensionIdlePollingTask(Profile* profile) : profile_(profile) {}
61 Profile* profile_;
92 void CreateNewPollTask(Profile* profile) {
95 new ExtensionIdlePollingTask(profile),
99 IdleState ThrottledCalculateIdleState(int threshold, Profile* profile) {
114 CreateNewPollTask(profile);
141 IdleState state = ThrottledCalculateIdleState(threshold, profile());
146 void ExtensionIdleEventRouter::OnIdleStateChange(Profile* profile,
154 profile->GetExtensionEventRouter()->DispatchEventToRenderers(
155 keys::kOnStateChanged, json_args, profile, GURL());