Merge "Emergency redial implementation"

This commit is contained in:
Brad Ebinger
2017-08-25 17:05:06 +00:00
committed by Android (Google) Code Review
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} */