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.java82 final InCallPresenter inCallPresenter = InCallPresenter.getInstance(); in onInCallButtonUiReady() local
83 inCallPresenter.addListener(this); in onInCallButtonUiReady()
84 inCallPresenter.addIncomingCallListener(this); in onInCallButtonUiReady()
85 inCallPresenter.addDetailsListener(this); in onInCallButtonUiReady()
86 inCallPresenter.addCanAddCallListener(this); in onInCallButtonUiReady()
87 inCallPresenter.getInCallCameraManager().addCameraSelectionListener(this); in onInCallButtonUiReady()
90 onStateChange(InCallState.NO_CALLS, inCallPresenter.getInCallState(), CallList.getInstance()); in onInCallButtonUiReady()
DInCallPresenter.java106 private static InCallPresenter inCallPresenter; field in InCallPresenter
284 if (inCallPresenter == null) { in getInstance()
286 inCallPresenter = new InCallPresenter(); in getInstance()
289 return inCallPresenter; in getInstance()
293 public static synchronized void setInstanceForTesting(InCallPresenter inCallPresenter) { in setInstanceForTesting() argument
294 InCallPresenter.inCallPresenter = inCallPresenter; in setInstanceForTesting()