Merge "Allow flags to be set on BubbleInfo" into udc-qpr-dev

This commit is contained in:
Mady Mellor
2023-07-12 01:00:11 +00:00
committed by Android (Google) Code Review

View File

@@ -129,6 +129,11 @@ public class BubbleInfo implements Parcelable {
return (mFlags & Notification.BubbleMetadata.FLAG_SUPPRESS_NOTIFICATION) != 0;
}
/** Sets the flags for this bubble. */
public void setFlags(int flags) {
mFlags = flags;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;