summaryrefslogtreecommitdiff
path: root/services/incremental/BinderIncrementalService.cpp
diff options
context:
space:
mode:
author Alex Buynytskyy <alexbuy@google.com> 2020-08-27 20:07:34 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2020-08-27 20:07:34 +0000
commit9f36df99486f1af37067df47db336a2d6bddbf45 (patch)
tree898e37c90a61a6dd2eb19ba3aa518d434026bd23 /services/incremental/BinderIncrementalService.cpp
parent284c825cfb0c94032f709f12f42724ff79832560 (diff)
parentbc0a7e6cbf4a56c1451e8e03040974b1cc0a782d (diff)
Merge "Wait for APK to be fully downloaded for full APK digests."
Diffstat (limited to 'services/incremental/BinderIncrementalService.cpp')
-rw-r--r--services/incremental/BinderIncrementalService.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/services/incremental/BinderIncrementalService.cpp b/services/incremental/BinderIncrementalService.cpp
index 41945a276fde..87ae4d719d11 100644
--- a/services/incremental/BinderIncrementalService.cpp
+++ b/services/incremental/BinderIncrementalService.cpp
@@ -237,6 +237,13 @@ binder::Status BinderIncrementalService::unlink(int32_t storageId, const std::st
return ok();
}
+binder::Status BinderIncrementalService::isFileFullyLoaded(int32_t storageId,
+ const std::string& path,
+ int32_t* _aidl_return) {
+ *_aidl_return = mImpl.isFileFullyLoaded(storageId, path);
+ return ok();
+}
+
binder::Status BinderIncrementalService::getLoadingProgress(int32_t storageId,
float* _aidl_return) {
*_aidl_return = mImpl.getLoadingProgress(storageId);