Merge "[FillDialog] : Fix case to log no focus with Fill Dialog" into tm-qpr-dev am: 5096f1489b

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

Change-Id: Iec20f29a1efc54fe18365fb4de0ee5fa4d7c5fba
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Simranjit Kohli
2022-09-24 05:14:38 +00:00
committed by Automerger Merge Worker
2 changed files with 9 additions and 1 deletions

View File

@@ -118,6 +118,14 @@ public final class PresentationStatsEventLogger {
});
}
public void maybeSetNoPresentationEventReasonIfNoReasonExists(@NotShownReason int reason) {
mEventInternal.ifPresent(event -> {
if (event.mCountShown == 0 && event.mNoPresentationReason == NOT_SHOWN_REASON_UNKNOWN) {
event.mNoPresentationReason = reason;
}
});
}
public void maybeSetAvailableCount(@Nullable List<Dataset> datasetList,
AutofillId currentViewId) {
mEventInternal.ifPresent(event -> {

View File

@@ -2922,7 +2922,7 @@ final class Session implements RemoteFillService.FillServiceCallbacks, ViewState
if (sDebug) {
Slog.d(TAG, "Set the response has expired.");
}
mPresentationStatsEventLogger.maybeSetNoPresentationEventReason(
mPresentationStatsEventLogger.maybeSetNoPresentationEventReasonIfNoReasonExists(
NOT_SHOWN_REASON_VIEW_CHANGED);
mPresentationStatsEventLogger.logAndEndEvent();
return;