19e1eda984560c8aadd394f3c7c40d17b4dfe22edChristopher Wiley/*
29e1eda984560c8aadd394f3c7c40d17b4dfe22edChristopher Wiley * Copyright (C) 2015 The Android Open Source Project
39e1eda984560c8aadd394f3c7c40d17b4dfe22edChristopher Wiley *
49e1eda984560c8aadd394f3c7c40d17b4dfe22edChristopher Wiley * Licensed under the Apache License, Version 2.0 (the "License");
59e1eda984560c8aadd394f3c7c40d17b4dfe22edChristopher Wiley * you may not use this file except in compliance with the License.
69e1eda984560c8aadd394f3c7c40d17b4dfe22edChristopher Wiley * You may obtain a copy of the License at
79e1eda984560c8aadd394f3c7c40d17b4dfe22edChristopher Wiley *
89e1eda984560c8aadd394f3c7c40d17b4dfe22edChristopher Wiley *      http://www.apache.org/licenses/LICENSE-2.0
99e1eda984560c8aadd394f3c7c40d17b4dfe22edChristopher Wiley *
109e1eda984560c8aadd394f3c7c40d17b4dfe22edChristopher Wiley * Unless required by applicable law or agreed to in writing, software
119e1eda984560c8aadd394f3c7c40d17b4dfe22edChristopher Wiley * distributed under the License is distributed on an "AS IS" BASIS,
129e1eda984560c8aadd394f3c7c40d17b4dfe22edChristopher Wiley * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
139e1eda984560c8aadd394f3c7c40d17b4dfe22edChristopher Wiley * See the License for the specific language governing permissions and
149e1eda984560c8aadd394f3c7c40d17b4dfe22edChristopher Wiley * limitations under the License.
159e1eda984560c8aadd394f3c7c40d17b4dfe22edChristopher Wiley */
169e1eda984560c8aadd394f3c7c40d17b4dfe22edChristopher Wiley
179e1eda984560c8aadd394f3c7c40d17b4dfe22edChristopher Wileypackage android.os;
189e1eda984560c8aadd394f3c7c40d17b4dfe22edChristopher Wiley
19e78e3fb71d9b1586482aa43514c0d6625c0ae197Tao Baooneway interface IUpdateEngineCallback {
209e1eda984560c8aadd394f3c7c40d17b4dfe22edChristopher Wiley  void onStatusUpdate(int status_code, float percentage);
219e1eda984560c8aadd394f3c7c40d17b4dfe22edChristopher Wiley  void onPayloadApplicationComplete(int error_code);
229e1eda984560c8aadd394f3c7c40d17b4dfe22edChristopher Wiley}
23