diff options
author | Songchun Fan <schfan@google.com> | 2021-04-14 19:04:11 +0000 |
---|---|---|
committer | Songchun Fan <schfan@google.com> | 2021-04-16 02:29:24 +0000 |
commit | 5ada1508c2e8cf005258e04117bf38fee759f31e (patch) | |
tree | 70b916edb279b878216359a2d1544419c47e8a7b /services/incremental/BinderIncrementalService.cpp | |
parent | e53db0d40254f57d8af33e0dcac43e464a06bd31 (diff) |
[pm] remove incremental startable/unstartable code
Also remove streaming health status reporting which could cause
startable state change because it is also not needed any more.
BUG: 171920377
Test: builds
Change-Id: I7284e7a63df79da7dbf3d16ff64302b3d1ce1348
Diffstat (limited to 'services/incremental/BinderIncrementalService.cpp')
-rw-r--r-- | services/incremental/BinderIncrementalService.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/services/incremental/BinderIncrementalService.cpp b/services/incremental/BinderIncrementalService.cpp index f843ea44541e..2f031bfe4f3f 100644 --- a/services/incremental/BinderIncrementalService.cpp +++ b/services/incremental/BinderIncrementalService.cpp @@ -335,20 +335,6 @@ binder::Status BinderIncrementalService::unregisterLoadingProgressListener(int32 return ok(); } -binder::Status BinderIncrementalService::registerStorageHealthListener( - int32_t storageId, - const ::android::os::incremental::StorageHealthCheckParams& healthCheckParams, - const ::android::sp<IStorageHealthListener>& healthListener, bool* _aidl_return) { - *_aidl_return = - mImpl.registerStorageHealthListener(storageId, healthCheckParams, healthListener); - return ok(); -} - -binder::Status BinderIncrementalService::unregisterStorageHealthListener(int32_t storageId) { - mImpl.unregisterStorageHealthListener(storageId); - return ok(); -} - binder::Status BinderIncrementalService::getMetrics(int32_t storageId, android::os::PersistableBundle* _aidl_return) { mImpl.getMetrics(storageId, _aidl_return); |