Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b8f4db89 authored by Andrew Lee's avatar Andrew Lee
Browse files

Use proper name for method for setting paused image.

Change-Id: Ifc3ada4d3b88ae325c2e4edc0c0bdd1b9f836995
parent d46eba18
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -27759,7 +27759,6 @@ package android.telecomm {
  public class RemoteCallVideoProvider implements android.os.IBinder.DeathRecipient {
    method public void binderDied();
    method public void onSetPauseImage(java.lang.String) throws android.os.RemoteException;
    method public void requestCallDataUsage() throws android.os.RemoteException;
    method public void requestCameraCapabilities() throws android.os.RemoteException;
    method public void sendSessionModifyRequest(android.telecomm.VideoCallProfile) throws android.os.RemoteException;
@@ -27768,6 +27767,7 @@ package android.telecomm {
    method public void setCamera(java.lang.String) throws android.os.RemoteException;
    method public void setDeviceOrientation(int) throws android.os.RemoteException;
    method public void setDisplaySurface(android.view.Surface) throws android.os.RemoteException;
    method public void setPauseImage(java.lang.String) throws android.os.RemoteException;
    method public void setPreviewSurface(android.view.Surface) throws android.os.RemoteException;
    method public void setZoom(float) throws android.os.RemoteException;
  }
+1 −1
Original line number Diff line number Diff line
@@ -76,7 +76,7 @@ public class RemoteCallVideoProvider implements IBinder.DeathRecipient {
        mCallVideoProvider.requestCallDataUsage();
    }

    public void onSetPauseImage(String uri) throws RemoteException {
    public void setPauseImage(String uri) throws RemoteException {
        mCallVideoProvider.setPauseImage(uri);
    }
}
 No newline at end of file