Home
last modified time | relevance | path

Searched refs:inCallPresenter (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Dialer/java/com/android/incallui/
DVideoPauseController.java36 private InCallPresenter inCallPresenter; field in VideoPauseController
96 public void setUp(@NonNull InCallPresenter inCallPresenter) { in setUp() argument
98 this.inCallPresenter = Assert.isNotNull(inCallPresenter); in setUp()
99 this.inCallPresenter.addListener(this); in setUp()
100 this.inCallPresenter.addIncomingCallListener(this); in setUp()
109 inCallPresenter.removeListener(this); in tearDown()
110 inCallPresenter.removeIncomingCallListener(this); in tearDown()
116 inCallPresenter = null; in clear()
255 if (inCallPresenter == null) { in onUiShowing()
259 final boolean isInCall = inCallPresenter.getInCallState() == InCallState.INCALL; in onUiShowing()
[all …]
DCallButtonPresenter.java86 final InCallPresenter inCallPresenter = InCallPresenter.getInstance(); in onInCallButtonUiReady() local
87 inCallPresenter.addListener(this); in onInCallButtonUiReady()
88 inCallPresenter.addIncomingCallListener(this); in onInCallButtonUiReady()
89 inCallPresenter.addDetailsListener(this); in onInCallButtonUiReady()
90 inCallPresenter.addCanAddCallListener(this); in onInCallButtonUiReady()
91 inCallPresenter.getInCallCameraManager().addCameraSelectionListener(this); in onInCallButtonUiReady()
94 onStateChange(InCallState.NO_CALLS, inCallPresenter.getInCallState(), CallList.getInstance()); in onInCallButtonUiReady()
DInCallPresenter.java106 private static InCallPresenter inCallPresenter; field in InCallPresenter
281 if (inCallPresenter == null) { in getInstance()
283 inCallPresenter = new InCallPresenter(); in getInstance()
286 return inCallPresenter; in getInstance()
290 public static synchronized void setInstanceForTesting(InCallPresenter inCallPresenter) { in setInstanceForTesting() argument
291 InCallPresenter.inCallPresenter = inCallPresenter; in setInstanceForTesting()