summaryrefslogtreecommitdiff
path: root/libs/binder/BackendUnifiedServiceManager.h
diff options
context:
space:
mode:
author Devin Moore <devinmoore@google.com> 2024-09-04 17:16:10 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2024-09-04 17:16:10 +0000
commitd53d0744fcd1cf7354941ad231bb633fee308066 (patch)
treee4de00651c218a2c5742bb2854d490257fad034b /libs/binder/BackendUnifiedServiceManager.h
parent1af8a3eef46e4dcef8c69e43e30291211c2964ce (diff)
parent18f63759c833fe73c2323a5f2c5637b8c93ac8a3 (diff)
Merge "Add support for injecting RPC binder accessors to libbinder" into main
Diffstat (limited to 'libs/binder/BackendUnifiedServiceManager.h')
-rw-r--r--libs/binder/BackendUnifiedServiceManager.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/libs/binder/BackendUnifiedServiceManager.h b/libs/binder/BackendUnifiedServiceManager.h
index 8f3839fcb2..387eb35346 100644
--- a/libs/binder/BackendUnifiedServiceManager.h
+++ b/libs/binder/BackendUnifiedServiceManager.h
@@ -59,9 +59,12 @@ public:
private:
sp<os::IServiceManager> mTheRealServiceManager;
- void toBinderService(const os::Service& in, os::Service* _out);
+ binder::Status toBinderService(const ::std::string& name, const os::Service& in,
+ os::Service* _out);
};
sp<BackendUnifiedServiceManager> getBackendUnifiedServiceManager();
-} // namespace android \ No newline at end of file
+android::binder::Status getInjectedAccessor(const std::string& name, android::os::Service* service);
+
+} // namespace android