commit | e045b28400c3159c0f5786c3a822c8fdb225f7be | [log] [tgz] |
---|---|---|
author | Lei Ju <leiju@google.com> | Wed Feb 01 22:39:31 2023 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Wed Feb 01 22:39:31 2023 +0000 |
tree | 944d02f512e333e26e1c66259b325a28e3d7915d | |
parent | 7fa48f6e13079046b158e6cce4253b5b02f33026 [diff] | |
parent | 1cf817fd00c9394959db87c95eb43ee74986b7c7 [diff] |
Merge "Add an endpoint type for native program"
diff --git a/contexthub/aidl/aidl_api/android.hardware.contexthub/current/android/hardware/contexthub/HostEndpointInfo.aidl b/contexthub/aidl/aidl_api/android.hardware.contexthub/current/android/hardware/contexthub/HostEndpointInfo.aidl index 84e8531..dabdbb6 100644 --- a/contexthub/aidl/aidl_api/android.hardware.contexthub/current/android/hardware/contexthub/HostEndpointInfo.aidl +++ b/contexthub/aidl/aidl_api/android.hardware.contexthub/current/android/hardware/contexthub/HostEndpointInfo.aidl
@@ -42,5 +42,6 @@ enum Type { FRAMEWORK = 1, APP = 2, + NATIVE = 3, } }
diff --git a/contexthub/aidl/android/hardware/contexthub/HostEndpointInfo.aidl b/contexthub/aidl/android/hardware/contexthub/HostEndpointInfo.aidl index a9d6657..c083bb9 100644 --- a/contexthub/aidl/android/hardware/contexthub/HostEndpointInfo.aidl +++ b/contexthub/aidl/android/hardware/contexthub/HostEndpointInfo.aidl
@@ -44,5 +44,8 @@ /** This endpoint is an Android app. */ APP = 2, + + /** This endpoint is from an Android native program. */ + NATIVE = 3, } }