Merge "Add cancel_when_requester_not_on_top to device_state print-states output" into udc-dev

This commit is contained in:
Jiaming Liu
2023-05-09 17:49:46 +00:00
committed by Android (Google) Code Review

View File

@@ -139,7 +139,10 @@ public final class DeviceState {
@Override
public String toString() {
return "DeviceState{" + "identifier=" + mIdentifier + ", name='" + mName + '\''
+ ", app_accessible=" + !hasFlag(FLAG_APP_INACCESSIBLE) + "}";
+ ", app_accessible=" + !hasFlag(FLAG_APP_INACCESSIBLE)
+ ", cancel_when_requester_not_on_top="
+ hasFlag(FLAG_CANCEL_WHEN_REQUESTER_NOT_ON_TOP)
+ "}";
}
@Override