summaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2014-03-19 11:47:02 -0700
committerYorke Lee <yorkelee@google.com>2014-03-21 18:36:26 -0700
commit93fb1d00bc318079e58e53db39b4850adc31ffa1 (patch)
tree3152547d3d6e15d70952301352999b0a83674181 /api
parentfb504779320f7343dfc5a0abe12954f922dd90b0 (diff)
downloadframeworks_base-93fb1d00bc318079e58e53db39b4850adc31ffa1.zip
frameworks_base-93fb1d00bc318079e58e53db39b4850adc31ffa1.tar.gz
frameworks_base-93fb1d00bc318079e58e53db39b4850adc31ffa1.tar.bz2
Add gateway support to frameworks/base/telecomm
Add parcelable GatewayInfo class used to store gateway info in Call and CallInfo. Add gateway-related string constants to TelecommConstants Bug: 13477768 Change-Id: I35b2de2d66edeed6273f6cba5329ca0f26264db6
Diffstat (limited to 'api')
-rw-r--r--api/current.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt
index 9209004..d483cf5 100644
--- a/api/current.txt
+++ b/api/current.txt
@@ -24531,8 +24531,10 @@ package android.telecomm {
public final class CallInfo implements android.os.Parcelable {
ctor public CallInfo(java.lang.String, android.telecomm.CallState, android.net.Uri);
method public int describeContents();
+ method public android.telecomm.GatewayInfo getGatewayInfo();
method public android.net.Uri getHandle();
method public java.lang.String getId();
+ method public android.net.Uri getOriginalHandle();
method public android.telecomm.CallState getState();
method public void writeToParcel(android.os.Parcel, int);
field public static final android.os.Parcelable.Creator CREATOR;
@@ -24620,6 +24622,16 @@ package android.telecomm {
enum_constant public static final android.telecomm.CallState RINGING;
}
+ public class GatewayInfo implements android.os.Parcelable {
+ method public int describeContents();
+ method public android.net.Uri getGatewayHandle();
+ method public java.lang.String getGatewayProviderPackageName();
+ method public android.net.Uri getOriginalHandle();
+ method public boolean isEmpty();
+ method public void writeToParcel(android.os.Parcel, int);
+ field public static final android.os.Parcelable.Creator CREATOR;
+ }
+
public final class InCallAdapter {
method public void answerCall(java.lang.String);
method public void disconnectCall(java.lang.String);