Merge "Emergency redial implementation" am: b3b09849bc am: f5a457244c

am: 1d8a6e4ee7

Change-Id: I8689b700ff77127534d5560fac1d849615e8f567
This commit is contained in:
Brad Ebinger
2017-08-25 20:56:03 +00:00
committed by android-build-merger
7 changed files with 83 additions and 9 deletions

View File

@@ -1332,6 +1332,14 @@ public abstract class ConnectionService extends Service {
mAdapter.onRemoteRttRequest(id);
}
}
@Override
public void onPhoneAccountChanged(Connection c, PhoneAccountHandle pHandle) {
String id = mIdByConnection.get(c);
if (id != null) {
mAdapter.onPhoneAccountChanged(id, pHandle);
}
}
};
/** {@inheritDoc} */