Home | History | Annotate | Download | only in apps

Lines Matching refs:Observer

41 void AppLifetimeMonitor::AddObserver(Observer* observer) {
42 observers_.AddObserver(observer);
45 void AppLifetimeMonitor::RemoveObserver(Observer* observer) {
46 observers_.RemoveObserver(observer);
121 FOR_EACH_OBSERVER(Observer, observers_, OnAppStart(profile_, app_id));
125 FOR_EACH_OBSERVER(Observer, observers_, OnAppActivated(profile_, app_id));
129 FOR_EACH_OBSERVER(Observer, observers_, OnAppDeactivated(profile_, app_id));
133 FOR_EACH_OBSERVER(Observer, observers_, OnAppStop(profile_, app_id));
137 FOR_EACH_OBSERVER(Observer, observers_, OnChromeTerminating());