summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--api/current.txt2
-rw-r--r--telecomm/java/android/telecomm/RemoteCallVideoProvider.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/api/current.txt b/api/current.txt
index 1e8f9b5..805ca70 100644
--- a/api/current.txt
+++ b/api/current.txt
@@ -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;
}
diff --git a/telecomm/java/android/telecomm/RemoteCallVideoProvider.java b/telecomm/java/android/telecomm/RemoteCallVideoProvider.java
index 4a226a9..856d321 100644
--- a/telecomm/java/android/telecomm/RemoteCallVideoProvider.java
+++ b/telecomm/java/android/telecomm/RemoteCallVideoProvider.java
@@ -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