diff options
author | Alex Buynytskyy <alexbuy@google.com> | 2020-02-10 08:34:18 -0800 |
---|---|---|
committer | Alex Buynytskyy <alexbuy@google.com> | 2020-02-11 13:11:31 -0800 |
commit | 04f7391fc3a3bd2dc0dd477a84d13e111d59423c (patch) | |
tree | 5ca2b8e14ac72043e9f27616074172f2a2f8ff9c /services/incremental/BinderIncrementalService.h | |
parent | ad1c9607445e374c88a273d562295d492b9072e1 (diff) |
Incremental installations in PackageManagerShellCommand.
- onPrepareImage in native,
- allow to check installation type and choose native or managed
dataloaders,
- native data loader for Incremental,
- install-incremental shell command.
Test: atest PackageManagerShellCommandTest
Test: atest IncrementalServiceTest
Bug: b/136132412 b/133435829
Change-Id: I530a8a203fb50132c1869abd0b869036add18699
Diffstat (limited to 'services/incremental/BinderIncrementalService.h')
-rw-r--r-- | services/incremental/BinderIncrementalService.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/services/incremental/BinderIncrementalService.h b/services/incremental/BinderIncrementalService.h index 51d7de3d9adf..4075da6d8159 100644 --- a/services/incremental/BinderIncrementalService.h +++ b/services/incremental/BinderIncrementalService.h @@ -38,9 +38,7 @@ public: void onInvalidStorage(int mountId); binder::Status openStorage(const std::string& path, int32_t* _aidl_return) final; - binder::Status createStorage(const std::string& path, - const ::android::content::pm::DataLoaderParamsParcel& params, - int32_t createMode, int32_t* _aidl_return) final; + binder::Status createStorage(const ::std::string& path, const ::android::content::pm::DataLoaderParamsParcel& params, const ::android::sp<::android::content::pm::IDataLoaderStatusListener>& listener, int32_t createMode, int32_t* _aidl_return) final; binder::Status createLinkedStorage(const std::string& path, int32_t otherStorageId, int32_t createMode, int32_t* _aidl_return) final; binder::Status makeBindMount(int32_t storageId, const std::string& sourcePath, |