Merge "Clarify unsigned int type in AIDL program id" into main

This commit is contained in:
Weilin Xu
2023-09-08 22:26:15 +00:00
committed by Android (Google) Code Review

View File

@@ -30,8 +30,10 @@ parcelable ProgramIdentifier {
IdentifierType type = IdentifierType.INVALID;
/**
* The uint64_t value field holds the value in format described in comments
* for IdentifierType enum.
* The value field holds the value in format described in comments for IdentifierType enum.
*
* The value should be 64-bit unsigned integer, but is represented as 64-bit signed integer
* in AIDL.
*/
long value;
}