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

Commit b18460ef authored by Andrew Lee's avatar Andrew Lee Committed by Android (Google) Code Review
Browse files

Merge "Use proper name for method for setting paused image."

parents f4a92fee b8f4db89
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -27760,7 +27760,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;
@@ -27769,6 +27768,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