Merge "Reset common association source while resetting procstats associations" into sc-dev am: dec2e2169e

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

Change-Id: I82eb6c1abdb211c60ce885e799830ebeb8118e55
This commit is contained in:
Jing Ji
2021-05-21 00:33:57 +00:00
committed by Automerger Merge Worker

View File

@@ -322,6 +322,15 @@ public final class AssociationState {
mActiveDuration = 0;
mActiveDurations = null;
}
// We're actually resetting the common sources in process state already,
// resetting it here too in case they're out of sync.
if (mAssociationState != null) {
final SourceState commonSource = getCommonSourceState(false);
if (commonSource != null) {
commonSource.resetSafely(now);
mCommonSourceState = null;
}
}
}
void commitStateTime(long nowUptime) {