Ben Gilad | 9f2bed3 | 2013-12-12 17:43:26 -0800 | [diff] [blame] | 1 | package com.android.telecomm; |
2 | |||||
3 | import com.android.telecomm.exceptions.OutgoingCallException; | ||||
4 | |||||
5 | // TODO(gilad): Move to use the AIDL-based implementation. | ||||
6 | public 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 | } |