blob: 72b73a7e2f245699aa72b04ea2f6a1c7bfb74fd5 [file] [log] [blame]
package com.android.telecomm;
import com.android.telecomm.exceptions.OutgoingCallException;
// TODO(gilad): Move to use the AIDL-based implementation.
public interface CallService {
public void setCallServiceAdapter(CallServiceAdapter adapter);
public boolean isCompatibleWith(String userInput, ContactInfo contactInfo);
public void placeOutgoingCall(String userInput, ContactInfo contactInfo)
throws OutgoingCallException;
}