diff options
| author | Jay Shrauner <shrauner@google.com> | 2015-04-16 23:05:55 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-04-16 23:06:05 +0000 |
| commit | d01242946eb7423612998b5bdbc71a6a1b3e8581 (patch) | |
| tree | ff472650660b82e6877e5f82c9714c9991b90776 /telecomm/java/android/telecom/ConnectionServiceAdapterServant.java | |
| parent | 54832cdb763034b5ee2d5ab289033a7ef2cf9cd1 (diff) | |
| parent | 8f988439247f90633af5fbcc6b18214f3b6f6d31 (diff) | |
| download | frameworks_base-d01242946eb7423612998b5bdbc71a6a1b3e8581.zip frameworks_base-d01242946eb7423612998b5bdbc71a6a1b3e8581.tar.gz frameworks_base-d01242946eb7423612998b5bdbc71a6a1b3e8581.tar.bz2 | |
Merge "Remove connection substate"
Diffstat (limited to 'telecomm/java/android/telecom/ConnectionServiceAdapterServant.java')
| -rw-r--r-- | telecomm/java/android/telecom/ConnectionServiceAdapterServant.java | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/telecomm/java/android/telecom/ConnectionServiceAdapterServant.java b/telecomm/java/android/telecom/ConnectionServiceAdapterServant.java index 5f93789..429f296 100644 --- a/telecomm/java/android/telecom/ConnectionServiceAdapterServant.java +++ b/telecomm/java/android/telecom/ConnectionServiceAdapterServant.java @@ -59,7 +59,6 @@ final class ConnectionServiceAdapterServant { private static final int MSG_SET_CONFERENCEABLE_CONNECTIONS = 20; private static final int MSG_ADD_EXISTING_CONNECTION = 21; private static final int MSG_ON_POST_DIAL_CHAR = 22; - private static final int MSG_SET_CALL_SUBSTATE = 23; private final IConnectionServiceAdapter mDelegate; @@ -221,10 +220,6 @@ final class ConnectionServiceAdapterServant { } break; } - case MSG_SET_CALL_SUBSTATE: { - mDelegate.setCallSubstate((String) msg.obj, msg.arg1); - break; - } } } }; @@ -389,12 +384,6 @@ final class ConnectionServiceAdapterServant { args.arg2 = connection; mHandler.obtainMessage(MSG_ADD_EXISTING_CONNECTION, args).sendToTarget(); } - - @Override - public void setCallSubstate(String connectionId, int callSubstate) { - mHandler.obtainMessage(MSG_SET_CALL_SUBSTATE, callSubstate, 0, - connectionId).sendToTarget(); - } }; public ConnectionServiceAdapterServant(IConnectionServiceAdapter delegate) { |
