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