commit | 1cf817fd00c9394959db87c95eb43ee74986b7c7 | [log] [tgz] |
---|---|---|
author | Lei Ju <leiju@google.com> | Mon Jan 30 11:19:44 2023 -0800 |
committer | Lei Ju <leiju@google.com> | Mon Jan 30 15:28:16 2023 -0800 |
tree | 4ad771e648b55aed708067cb95abddbf8b5c81ff | |
parent | 983fad40df1ae216a76089224ad30f973f74bba0 [diff] |
Add an endpoint type for native program Test: compilation Bug: 267197197 Change-Id: Ice7df84065bf9c5acc73e21232e2ccd3d63a8bbe
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, } }