1a93cd53c4f8ab8cb926ed9223373567ebbf45cb6Casey Dahlin/*
2a93cd53c4f8ab8cb926ed9223373567ebbf45cb6Casey Dahlin * Copyright (C) 2016 The Android Open Source Project
3a93cd53c4f8ab8cb926ed9223373567ebbf45cb6Casey Dahlin *
4a93cd53c4f8ab8cb926ed9223373567ebbf45cb6Casey Dahlin * Licensed under the Apache License, Version 2.0 (the "License");
5a93cd53c4f8ab8cb926ed9223373567ebbf45cb6Casey Dahlin * you may not use this file except in compliance with the License.
6a93cd53c4f8ab8cb926ed9223373567ebbf45cb6Casey Dahlin * You may obtain a copy of the License at
7a93cd53c4f8ab8cb926ed9223373567ebbf45cb6Casey Dahlin *
8a93cd53c4f8ab8cb926ed9223373567ebbf45cb6Casey Dahlin *      http://www.apache.org/licenses/LICENSE-2.0
9a93cd53c4f8ab8cb926ed9223373567ebbf45cb6Casey Dahlin *
10a93cd53c4f8ab8cb926ed9223373567ebbf45cb6Casey Dahlin * Unless required by applicable law or agreed to in writing, software
11a93cd53c4f8ab8cb926ed9223373567ebbf45cb6Casey Dahlin * distributed under the License is distributed on an "AS IS" BASIS,
12a93cd53c4f8ab8cb926ed9223373567ebbf45cb6Casey Dahlin * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13a93cd53c4f8ab8cb926ed9223373567ebbf45cb6Casey Dahlin * See the License for the specific language governing permissions and
14a93cd53c4f8ab8cb926ed9223373567ebbf45cb6Casey Dahlin * limitations under the License.
15a93cd53c4f8ab8cb926ed9223373567ebbf45cb6Casey Dahlin */
16a93cd53c4f8ab8cb926ed9223373567ebbf45cb6Casey Dahlin
17a93cd53c4f8ab8cb926ed9223373567ebbf45cb6Casey Dahlinpackage android.brillo;
18a93cd53c4f8ab8cb926ed9223373567ebbf45cb6Casey Dahlin
19a93cd53c4f8ab8cb926ed9223373567ebbf45cb6Casey Dahlininterface IUpdateEngineStatusCallback {
20619d272bd026bbfbd972a7a59278b1325c186da2Casey Dahlin  oneway
21a93cd53c4f8ab8cb926ed9223373567ebbf45cb6Casey Dahlin  void HandleStatusUpdate(in long last_checked_time, in double progress,
22a93cd53c4f8ab8cb926ed9223373567ebbf45cb6Casey Dahlin      in String current_operation, in String new_version, in long new_size);
23a93cd53c4f8ab8cb926ed9223373567ebbf45cb6Casey Dahlin}
24