blob: 72b73a7e2f245699aa72b04ea2f6a1c7bfb74fd5 [file] [log] [blame]
Ben Gilad9f2bed32013-12-12 17:43:26 -08001package com.android.telecomm;
2
3import com.android.telecomm.exceptions.OutgoingCallException;
4
5// TODO(gilad): Move to use the AIDL-based implementation.
6public interface CallService {
7
8 public void setCallServiceAdapter(CallServiceAdapter adapter);
9
10 public boolean isCompatibleWith(String userInput, ContactInfo contactInfo);
11
12 public void placeOutgoingCall(String userInput, ContactInfo contactInfo)
13 throws OutgoingCallException;
14}