Merge "Add getter for mockability" into tm-qpr-dev

This commit is contained in:
Vinit Nayak
2023-04-03 14:58:28 +00:00
committed by Android (Google) Code Review

View File

@@ -133,6 +133,10 @@ public class Task {
return this.baseIntent.getPackage(); return this.baseIntent.getPackage();
} }
public int getId() {
return id;
}
@Override @Override
public boolean equals(Object o) { public boolean equals(Object o) {
if (!(o instanceof TaskKey)) { if (!(o instanceof TaskKey)) {
@@ -307,6 +311,10 @@ public class Task {
lastSnapshotData.set(rawTask.lastSnapshotData); lastSnapshotData.set(rawTask.lastSnapshotData);
} }
public TaskKey getKey() {
return key;
}
/** /**
* Returns the visible width to height ratio. Returns 0f if snapshot data is not available. * Returns the visible width to height ratio. Returns 0f if snapshot data is not available.
*/ */