Commit 2038a4aa authored by Tyler Gunn's avatar Tyler Gunn
Browse files

Provide stub implementation for new IImsService method.

Bug: 27458894
Change-Id: I0b3684f8c084efa377849797957179141081154d
parent 45eb22e8
......@@ -23,6 +23,7 @@ import com.android.ims.internal.IImsCallSession;
import com.android.ims.internal.IImsCallSessionListener;
import com.android.ims.internal.IImsConfig;
import com.android.ims.internal.IImsEcbm;
import com.android.ims.internal.IImsMultiEndpoint;
import com.android.ims.internal.IImsRegistrationListener;
import com.android.ims.internal.IImsService;
import com.android.ims.internal.IImsUt;
......@@ -110,6 +111,11 @@ public abstract class ImsServiceBase {
public void setUiTTYMode(int serviceId, int uiTtyMode, Message onComplete) {
onSetUiTTYMode(serviceId, uiTtyMode, onComplete);
}
@Override
public IImsMultiEndpoint getMultiEndpointInterface(int serviceId) {
return onGetMultiEndpointInterface(serviceId);
}
}
private ImsServiceBinder mBinder;
......@@ -197,5 +203,10 @@ public abstract class ImsServiceBase {
protected void onSetUiTTYMode(int serviceId, int uiTtyMode, Message onComplete) {
// no-op
}
protected IImsMultiEndpoint onGetMultiEndpointInterface(int serviceId) {
// no-op
return null;
}
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment