diff options
author | Sailesh Nepal <sail@google.com> | 2014-02-11 22:51:32 -0800 |
---|---|---|
committer | Evan Charlton <evanc@google.com> | 2014-02-20 15:26:18 -0800 |
commit | 968740b5f574fee11d71a35c321f4e9e13d13570 (patch) | |
tree | aef56ff9817c9188cffc44e2999e0908c803b5e4 /telephony/java/com | |
parent | 77e0d606f63c8526931018a3ae86f8b9d722c0bd (diff) | |
download | frameworks_base-968740b5f574fee11d71a35c321f4e9e13d13570.zip frameworks_base-968740b5f574fee11d71a35c321f4e9e13d13570.tar.gz frameworks_base-968740b5f574fee11d71a35c321f4e9e13d13570.tar.bz2 |
Add abstract base implementation of CallService.
Base implementation takes care of a lot of boilerplate code.
Change-Id: Iaf5a16f5718727cee0f7efb4af53a021536f50d8
Diffstat (limited to 'telephony/java/com')
-rw-r--r-- | telephony/java/com/android/internal/telephony/ICallService.aidl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/telephony/java/com/android/internal/telephony/ICallService.aidl b/telephony/java/com/android/internal/telephony/ICallService.aidl index a24c860..cb9b2e8 100644 --- a/telephony/java/com/android/internal/telephony/ICallService.aidl +++ b/telephony/java/com/android/internal/telephony/ICallService.aidl @@ -57,5 +57,5 @@ oneway interface ICallService { * and communicate state changes of existing calls. This is the first method that is called * after a the framework binds to the call service. */ - void setCallServiceAdapter(ICallServiceAdapter CallServiceAdapter); + void setCallServiceAdapter(ICallServiceAdapter callServiceAdapter); } |