diff options
author | Tyler Gunn <tgunn@google.com> | 2014-09-12 22:16:17 -0700 |
---|---|---|
committer | Tyler Gunn <tgunn@google.com> | 2014-09-12 22:16:17 -0700 |
commit | ef9f6f957d897ea0ed82114185b8fa3fefd4917b (patch) | |
tree | 4aff42f3d54f4454e598f27829c4983ba808afa7 /telecomm/java/com/android/internal/telecom/IInCallService.aidl | |
parent | 4b5c2d3cfc8aec4ab90097734a3556a0d0c0e68d (diff) | |
download | frameworks_base-ef9f6f957d897ea0ed82114185b8fa3fefd4917b.zip frameworks_base-ef9f6f957d897ea0ed82114185b8fa3fefd4917b.tar.gz frameworks_base-ef9f6f957d897ea0ed82114185b8fa3fefd4917b.tar.bz2 |
Renaming Telecomm to Telecom.
- Changing package from android.telecomm to android.telecom
- Changing package from com.android.telecomm to
com.android.server.telecomm.
- Renaming TelecommManager to TelecomManager.
Bug: 17364651
Change-Id: I192cb5d189f55db012ea72ee82ccc5aedbc21638
Diffstat (limited to 'telecomm/java/com/android/internal/telecom/IInCallService.aidl')
-rw-r--r-- | telecomm/java/com/android/internal/telecom/IInCallService.aidl | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/telecomm/java/com/android/internal/telecom/IInCallService.aidl b/telecomm/java/com/android/internal/telecom/IInCallService.aidl new file mode 100644 index 0000000..35f6f65 --- /dev/null +++ b/telecomm/java/com/android/internal/telecom/IInCallService.aidl @@ -0,0 +1,46 @@ +/* + * Copyright (C) 2014 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.android.internal.telecom; + +import android.app.PendingIntent; +import android.telecom.AudioState; +import android.telecom.ParcelableCall; + +import com.android.internal.telecom.IInCallAdapter; + +/** + * Internal remote interface for in-call services. + * + * @see android.telecom.InCallService + * + * {@hide} + */ +oneway interface IInCallService { + void setInCallAdapter(in IInCallAdapter inCallAdapter); + + void addCall(in ParcelableCall call); + + void updateCall(in ParcelableCall call); + + void setPostDial(String callId, String remaining); + + void setPostDialWait(String callId, String remaining); + + void onAudioStateChanged(in AudioState audioState); + + void bringToForeground(boolean showDialpad); +} |