summaryrefslogtreecommitdiff
path: root/services/incremental/ServiceWrappers.h
diff options
context:
space:
mode:
Diffstat (limited to 'services/incremental/ServiceWrappers.h')
-rw-r--r--services/incremental/ServiceWrappers.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/services/incremental/ServiceWrappers.h b/services/incremental/ServiceWrappers.h
index f0b56729e8d7..642158322c7c 100644
--- a/services/incremental/ServiceWrappers.h
+++ b/services/incremental/ServiceWrappers.h
@@ -60,8 +60,6 @@ public:
bool* _aidl_return) const = 0;
virtual binder::Status startDataLoader(MountId mountId, bool* _aidl_return) const = 0;
virtual binder::Status destroyDataLoader(MountId mountId) const = 0;
- virtual binder::Status newFileForDataLoader(MountId mountId, FileId fileid,
- const std::vector<uint8_t>& metadata) const = 0;
virtual binder::Status showHealthBlockedUI(MountId mountId) const = 0;
};
@@ -128,13 +126,6 @@ public:
binder::Status destroyDataLoader(MountId mountId) const override {
return mInterface->destroyDataLoader(mountId);
}
- binder::Status newFileForDataLoader(MountId mountId, FileId fileid,
- const std::vector<uint8_t>& metadata) const override {
- return mInterface->newFileForDataLoader(mountId,
- {(const uint8_t*)fileid.data,
- (const uint8_t*)fileid.data + sizeof(fileid.data)},
- metadata);
- }
binder::Status showHealthBlockedUI(MountId mountId) const override {
return mInterface->showHealthBlockedUI(mountId);
}