11fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedy/*
21fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedy * Copyright (C) 2017 The Android Open Source Project
31fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedy *
41fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedy * Licensed under the Apache License, Version 2.0 (the "License");
51fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedy * you may not use this file except in compliance with the License.
61fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedy * You may obtain a copy of the License at
71fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedy *
81fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedy *      http://www.apache.org/licenses/LICENSE-2.0
91fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedy *
101fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedy * Unless required by applicable law or agreed to in writing, software
111fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedy * distributed under the License is distributed on an "AS IS" BASIS,
121fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedy * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
131fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedy * See the License for the specific language governing permissions and
141fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedy * limitations under the License.
151fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedy */
161fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedy
171fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedypackage android.app;
181fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedy
191fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedyimport android.os.IRemoteCallback;
201fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedy
211fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedy/** @hide */
221fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedyoneway interface IInstantAppResolver {
231fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedy    void getInstantAppResolveInfoList(in int[] digestPrefix,
24d3c5106940838f2867afbbbfe251aaad38ab24b5Todd Kennedy            String token, int sequence, IRemoteCallback callback);
251fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedy
261fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedy    void getInstantAppIntentFilterList(in int[] digestPrefix,
27d3c5106940838f2867afbbbfe251aaad38ab24b5Todd Kennedy            String token, String hostName, IRemoteCallback callback);
281fb3404b2ba69a823e961bec2d9ed61622107052Todd Kennedy}
29