Home | History | Annotate | Download | only in incallui

Lines Matching full:presenter

130         public VideoCallSurface(VideoCallPresenter presenter, int surfaceId,
132 this(presenter, surfaceId, textureView, DIMENSIONS_NOT_SET, DIMENSIONS_NOT_SET);
143 public VideoCallSurface(VideoCallPresenter presenter,int surfaceId, TextureView textureView,
147 mPresenter = presenter;
187 public void resetPresenter(VideoCallPresenter presenter) {
189 + presenter);
190 mPresenter = presenter;
225 // Inform presenter that the surface is available.
235 Log.e(this, "onSurfaceTextureAvailable: Presenter is null");
261 * Destroying the surface texture; inform the presenter so it can null the surfaces.
268 // Notify presenter if it is not null.
285 Log.e(this, "onSurfaceTextureDestroyed: Presenter is null.");
321 * Called by the user presenter to indicate that the surface is no longer required due to a
347 Log.d(this, "setDoneWithSurface: Presenter is null.");
405 Log.e(this, "onClick: Presenter is null.");
425 * Handles creation of the activity and initialization of the presenter.
504 * Creates the presenter for the {@link VideoCallFragment}.
505 * @return The presenter instance.
510 VideoCallPresenter presenter = new VideoCallPresenter();
511 onPresenterChanged(presenter);
512 return presenter;
516 * @return The user interface for the presenter, which is this fragment.
568 * Cleans up the video telephony surfaces. Used when the presenter indicates a change to an
591 private void onPresenterChanged(VideoCallPresenter presenter) {
592 Log.d(this, "onPresenterChanged: Presenter=" + presenter);
594 sDisplaySurface.resetPresenter(presenter);;
597 sPreviewSurface.resetPresenter(presenter);