18ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackborn/* //device/java/android/android/app/IActivityPendingResult.aidl
28ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackborn**
38ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackborn** Copyright 2010, The Android Open Source Project
48ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackborn**
58ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackborn** Licensed under the Apache License, Version 2.0 (the "License");
68ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackborn** you may not use this file except in compliance with the License.
78ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackborn** You may obtain a copy of the License at
88ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackborn**
98ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackborn**     http://www.apache.org/licenses/LICENSE-2.0
108ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackborn**
118ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackborn** Unless required by applicable law or agreed to in writing, software
128ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackborn** distributed under the License is distributed on an "AS IS" BASIS,
138ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackborn** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
148ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackborn** See the License for the specific language governing permissions and
158ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackborn** limitations under the License.
168ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackborn*/
178ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackborn
188ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackbornpackage android.os;
198ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackborn
208ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackbornimport android.os.Bundle;
218ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackborn
228ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackborn/** @hide */
238ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackbornoneway interface IRemoteCallback {
248ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackborn    void sendResult(in Bundle data);
258ea138cbf12b140d43fd81f4f12fe1a9234f1f25Dianne Hackborn}
26