diff options
author | Andrew Lee <anwlee@google.com> | 2014-06-27 17:02:19 -0700 |
---|---|---|
committer | Andrew Lee <anwlee@google.com> | 2014-06-30 11:44:20 -0700 |
commit | 5dc3075cfca63aa1f9215e49156e2af12183d07d (patch) | |
tree | d9284b33b31d9119b33cb5a42742eed8bc4c1e52 /api/current.txt | |
parent | 906d47fd2bcedb9674b5765d01bd9c758069074c (diff) | |
download | frameworks_base-5dc3075cfca63aa1f9215e49156e2af12183d07d.zip frameworks_base-5dc3075cfca63aa1f9215e49156e2af12183d07d.tar.gz frameworks_base-5dc3075cfca63aa1f9215e49156e2af12183d07d.tar.bz2 |
Add ICallVideoProvider binder to the InCallCall object.
Bug: 15893156
Change-Id: I450d50c53e0e77944717d1fd8e7b246c3c4bf3b1
Diffstat (limited to 'api/current.txt')
-rw-r--r-- | api/current.txt | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/api/current.txt b/api/current.txt index a5813d5..4c2ce69 100644 --- a/api/current.txt +++ b/api/current.txt @@ -27572,11 +27572,6 @@ package android.telecomm { method public abstract void setCamera(java.lang.String); } - public class CallVideoProviderWrapper implements android.os.IBinder.DeathRecipient { - method public void binderDied(); - method public void setCamera(java.lang.String) throws android.os.RemoteException; - } - public abstract class Connection { ctor protected Connection(); method public final android.telecomm.CallAudioState getCallAudioState(); @@ -27723,6 +27718,7 @@ package android.telecomm { public final class InCallCall implements android.os.Parcelable { method public int describeContents(); + method public android.telecomm.RemoteCallVideoProvider getCallVideoProvider() throws android.os.RemoteException; method public java.util.List<java.lang.String> getCannedSmsResponses(); method public int getCapabilities(); method public long getConnectTimeMillis(); @@ -27752,6 +27748,11 @@ package android.telecomm { method protected abstract void updateCall(android.telecomm.InCallCall); } + public class RemoteCallVideoProvider implements android.os.IBinder.DeathRecipient { + method public void binderDied(); + method public void setCamera(java.lang.String) throws android.os.RemoteException; + } + public final class RemoteConnection { method public void addListener(android.telecomm.RemoteConnection.Listener); method public void answer(); |