Files
frameworks_base/telecomm/java/com/android/internal/telecom/IInCallService.aidl
Santos Cordon 6c912b7d05 Make add-call a global property of telecom. (1/4)
ADD_CALL didn't make sense as a property of Connection or Call.
This changes it to be a global property instead.

Bug: 18285352
Change-Id: I658e7a6977a848600272cde2914612c8691bb801
2014-11-10 19:19:35 +00:00

49 lines
1.4 KiB
Plaintext

/*
* 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);
void onCanAddCallChanged(boolean canAddCall);
}