Lines Matching refs:common
42 NormalContext::CommonParts common = MakeCommonParts();
44 this->eventObservable = common.eventsPoster;
46 InitAppStartMonitor(common);
47 InitJankAnimatorMonitor(common);
58 void NormalContext::InitAppStartMonitor(const NormalContext::CommonParts& common)
60 IMonitor* appStartMonitor = MakeAppStartMonitor(common);
75 IMonitor* NormalContext::MakeAppStartMonitor(const NormalContext::CommonParts& common)
78 ITimeoutExecutor* exec = common.thr;
79 AppTimerAdapter* sceneTimer = new AppTimerAdapter(TimerUser::APP_START, common.timerInfra);
83 IAppStartReporter* reporter = new AppStartReporterAdapter(infrastructure, common.eventsPoster);
84 AppLaunchMonitor* appStartMonitor = new AppLaunchMonitor(this, common.thr, reporter, processor);
90 void NormalContext::InitJankAnimatorMonitor(const NormalContext::CommonParts& common)
92 IMonitor* animatorMonitor = MakeJankAnimatorMonitor(common);
98 IMonitor* NormalContext::MakeJankAnimatorMonitor(const NormalContext::CommonParts& common)
102 IJankAnimatorReporter* reporter = new JankAnimatorReporterAdapter(reporterImpl, common.eventsPoster);
103 JankAnimatorMonitor* animatorMonitor = new JankAnimatorMonitor(common.thr, dataProcessor, reporter);