Merge "Add locusId as something taskOrganizers care about" into sc-v2-dev am: 80a34bc07e

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/16168978

Change-Id: I3226fd2bfdfa54324e87f23d4aac8213c5bd849f
This commit is contained in:
Mady Mellor
2021-11-03 00:56:08 +00:00
committed by Automerger Merge Worker

View File

@@ -368,7 +368,8 @@ public class TaskInfo {
&& Objects.equals(taskDescription, that.taskDescription)
&& isFocused == that.isFocused
&& isVisible == that.isVisible
&& isSleeping == that.isSleeping;
&& isSleeping == that.isSleeping
&& Objects.equals(mTopActivityLocusId, that.mTopActivityLocusId);
}
/**