summaryrefslogtreecommitdiffstats
path: root/tests/aidl_test_service.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/aidl_test_service.cpp')
-rw-r--r--tests/aidl_test_service.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/aidl_test_service.cpp b/tests/aidl_test_service.cpp
index ca21b5d..b41cac7 100644
--- a/tests/aidl_test_service.cpp
+++ b/tests/aidl_test_service.cpp
@@ -258,6 +258,12 @@ class NativeService : public BnTestService {
return ReverseArray(input, repeated, _aidl_return);
}
+ status_t ReverseNamedCallbackList(const vector<sp<IBinder>>& input,
+ vector<sp<IBinder>>* repeated,
+ vector<sp<IBinder>>* _aidl_return) override {
+ return ReverseArray(input, repeated, _aidl_return);
+ }
+
private:
map<String16, sp<INamedCallback>> service_map_;
};