blob: d50dc0bb59222d047e0291dd5debd1334638e1cc [file] [log] [blame]
Dianne Hackborn91097de2014-04-04 18:02:06 -07001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.internal.app;
18
Dianne Hackborn3d07c942015-03-13 18:02:54 -070019import android.app.VoiceInteractor;
Dianne Hackborn91097de2014-04-04 18:02:06 -070020import android.os.Bundle;
Sunny Goyal70db79a2019-03-20 12:46:55 -070021import android.os.ICancellationSignal;
Dianne Hackborn91097de2014-04-04 18:02:06 -070022
23import com.android.internal.app.IVoiceInteractorCallback;
24import com.android.internal.app.IVoiceInteractorRequest;
25
26/**
27 * IPC interface for an application to perform calls through a VoiceInteractor.
28 */
29interface IVoiceInteractor {
30 IVoiceInteractorRequest startConfirmation(String callingPackage,
James Cook6cf39752015-06-04 14:18:43 -070031 IVoiceInteractorCallback callback, in VoiceInteractor.Prompt prompt, in Bundle extras);
Dianne Hackborn3d07c942015-03-13 18:02:54 -070032 IVoiceInteractorRequest startPickOption(String callingPackage,
James Cook6cf39752015-06-04 14:18:43 -070033 IVoiceInteractorCallback callback, in VoiceInteractor.Prompt prompt,
Dianne Hackborn3d07c942015-03-13 18:02:54 -070034 in VoiceInteractor.PickOptionRequest.Option[] options, in Bundle extras);
Barnaby Jamesd3fdb8b2014-07-07 10:51:06 -070035 IVoiceInteractorRequest startCompleteVoice(String callingPackage,
James Cook6cf39752015-06-04 14:18:43 -070036 IVoiceInteractorCallback callback, in VoiceInteractor.Prompt prompt, in Bundle extras);
Dianne Hackborna2c076d2014-05-30 16:42:57 -070037 IVoiceInteractorRequest startAbortVoice(String callingPackage,
James Cook6cf39752015-06-04 14:18:43 -070038 IVoiceInteractorCallback callback, in VoiceInteractor.Prompt prompt, in Bundle extras);
Dianne Hackborn91097de2014-04-04 18:02:06 -070039 IVoiceInteractorRequest startCommand(String callingPackage,
40 IVoiceInteractorCallback callback, String command, in Bundle extras);
41 boolean[] supportsCommands(String callingPackage, in String[] commands);
Sunny Goyal70db79a2019-03-20 12:46:55 -070042 void notifyDirectActionsChanged(int taskId, IBinder assistToken);
43 void setKillCallback(in ICancellationSignal callback);
Dianne Hackborn91097de2014-04-04 18:02:06 -070044}