Add an endpoint type for native program

Test: compilation
Bug: 267197197
Change-Id: Ice7df84065bf9c5acc73e21232e2ccd3d63a8bbe
This commit is contained in:
Lei Ju
2023-01-30 11:19:44 -08:00
parent 983fad40df
commit 1cf817fd00
2 changed files with 4 additions and 0 deletions

View File

@@ -42,5 +42,6 @@ parcelable HostEndpointInfo {
enum Type {
FRAMEWORK = 1,
APP = 2,
NATIVE = 3,
}
}

View File

@@ -44,5 +44,8 @@ parcelable HostEndpointInfo {
/** This endpoint is an Android app. */
APP = 2,
/** This endpoint is from an Android native program. */
NATIVE = 3,
}
}