1 /*
2  * Copyright (C) 2018 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 
17 package android.service.contentcapture;
18 
19 import android.content.ComponentName;
20 import android.os.IBinder;
21 import android.service.contentcapture.ActivityEvent;
22 import android.service.contentcapture.SnapshotData;
23 import android.view.contentcapture.ContentCaptureContext;
24 import android.view.contentcapture.DataRemovalRequest;
25 
26 import com.android.internal.os.IResultReceiver;
27 
28 import java.util.List;
29 
30 /**
31  * Interface from the system to a Content Capture service.
32  *
33  * @hide
34  */
35 oneway interface IContentCaptureService {
onConnected(IBinder callback, boolean verbose, boolean debug)36     void onConnected(IBinder callback, boolean verbose, boolean debug);
onDisconnected()37     void onDisconnected();
onSessionStarted(in ContentCaptureContext context, int sessionId, int uid, in IResultReceiver clientReceiver, int initialState)38     void onSessionStarted(in ContentCaptureContext context, int sessionId, int uid,
39                           in IResultReceiver clientReceiver, int initialState);
onSessionFinished(int sessionId)40     void onSessionFinished(int sessionId);
onActivitySnapshot(int sessionId, in SnapshotData snapshotData)41     void onActivitySnapshot(int sessionId, in SnapshotData snapshotData);
onDataRemovalRequest(in DataRemovalRequest request)42     void onDataRemovalRequest(in DataRemovalRequest request);
onActivityEvent(in ActivityEvent event)43     void onActivityEvent(in ActivityEvent event);
44 }
45