summaryrefslogtreecommitdiffstats
path: root/telecomm/java/android/telecom/ConnectionServiceAdapter.java
diff options
context:
space:
mode:
authorJay Shrauner <shrauner@google.com>2015-04-16 12:52:19 -0700
committerJay Shrauner <shrauner@google.com>2015-04-16 14:42:39 -0700
commit8f988439247f90633af5fbcc6b18214f3b6f6d31 (patch)
treeb8b1b6835e558c96f5d7a8cca82a30103cd2ee07 /telecomm/java/android/telecom/ConnectionServiceAdapter.java
parent8148f8b6f73f69bd87fc2b424b003709ada8db01 (diff)
downloadframeworks_base-8f988439247f90633af5fbcc6b18214f3b6f6d31.zip
frameworks_base-8f988439247f90633af5fbcc6b18214f3b6f6d31.tar.gz
frameworks_base-8f988439247f90633af5fbcc6b18214f3b6f6d31.tar.bz2
Remove connection substate
Bug:20300433 Change-Id: Ifefc08b5165de3e0b6ce92007e5f612879dcc4d9
Diffstat (limited to 'telecomm/java/android/telecom/ConnectionServiceAdapter.java')
-rw-r--r--telecomm/java/android/telecom/ConnectionServiceAdapter.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/telecomm/java/android/telecom/ConnectionServiceAdapter.java b/telecomm/java/android/telecom/ConnectionServiceAdapter.java
index a410976..d026a28 100644
--- a/telecomm/java/android/telecom/ConnectionServiceAdapter.java
+++ b/telecomm/java/android/telecom/ConnectionServiceAdapter.java
@@ -369,26 +369,4 @@ final class ConnectionServiceAdapter implements DeathRecipient {
}
}
}
-
- /**
- * Set the call substate for the connection.
- * Valid values: {@link Connection#CALL_SUBSTATE_NONE},
- * {@link Connection#CALL_SUBSTATE_AUDIO_CONNECTED_SUSPENDED},
- * {@link Connection#CALL_SUBSTATE_VIDEO_CONNECTED_SUSPENDED},
- * {@link Connection#CALL_SUBSTATE_AVP_RETRY},
- * {@link Connection#CALL_SUBSTATE_MEDIA_PAUSED}.
- *
- * @param callId The unique ID of the call to set the substate for.
- * @param callSubstate The new call substate.
- * @hide
- */
- public final void setCallSubstate(String callId, int callSubstate) {
- Log.v(this, "setCallSubstate: %d", callSubstate);
- for (IConnectionServiceAdapter adapter : mAdapters) {
- try {
- adapter.setCallSubstate(callId, callSubstate);
- } catch (RemoteException ignored) {
- }
- }
- }
}