summaryrefslogtreecommitdiffstats
path: root/telecomm/java/com
diff options
context:
space:
mode:
authorAndrew Lee <anwlee@google.com>2014-09-08 15:34:24 -0700
committerAndrew Lee <anwlee@google.com>2014-09-11 13:30:10 -0700
commit100e293fa8021caed956597daa4e01cb19be1c33 (patch)
treeb2076765d4a024478e479b11674d41d5af9420c0 /telecomm/java/com
parent3e42b339800f5a3ac840e9545c36f3445b5c64b3 (diff)
downloadframeworks_base-100e293fa8021caed956597daa4e01cb19be1c33.zip
frameworks_base-100e293fa8021caed956597daa4e01cb19be1c33.tar.gz
frameworks_base-100e293fa8021caed956597daa4e01cb19be1c33.tar.bz2
API cleanup for RemoteConnection.
+ Rename handle to address. + Rename audioModeIsVoip to IsVoipAudioMode. + Rename Listener to Callback. - Delete getParent() and getChildren() methods. - Delete onChildrenChanged/onParentChanged methods. + Rename Listener to Callback. + Rename Callback methods to reflect other changes. Bug: 17329632 Change-Id: Ie466472e995050f578fbb1c4b9de0ae59e488988
Diffstat (limited to 'telecomm/java/com')
-rw-r--r--telecomm/java/com/android/internal/telecomm/IConnectionServiceAdapter.aidl6
1 files changed, 3 insertions, 3 deletions
diff --git a/telecomm/java/com/android/internal/telecomm/IConnectionServiceAdapter.aidl b/telecomm/java/com/android/internal/telecomm/IConnectionServiceAdapter.aidl
index 610178e..4b636d1 100644
--- a/telecomm/java/com/android/internal/telecomm/IConnectionServiceAdapter.aidl
+++ b/telecomm/java/com/android/internal/telecomm/IConnectionServiceAdapter.aidl
@@ -49,7 +49,7 @@ oneway interface IConnectionServiceAdapter {
void setOnHold(String callId);
- void setRequestingRingback(String callId, boolean ringing);
+ void setRingbackRequested(String callId, boolean ringing);
void setCallCapabilities(String callId, int callCapabilities);
@@ -67,11 +67,11 @@ oneway interface IConnectionServiceAdapter {
void setVideoState(String callId, int videoState);
- void setAudioModeIsVoip(String callId, boolean isVoip);
+ void setIsVoipAudioMode(String callId, boolean isVoip);
void setStatusHints(String callId, in StatusHints statusHints);
- void setHandle(String callId, in Uri handle, int presentation);
+ void setAddress(String callId, in Uri address, int presentation);
void setCallerDisplayName(String callId, String callerDisplayName, int presentation);