Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit be2db1ef authored by Amith Yamasani's avatar Amith Yamasani Committed by Android (Google) Code Review
Browse files

Merge "Don't inform usage stats of interaction for a toast" into nyc-mr1-dev

parents 103922f8 43caafa2
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -20700,8 +20700,10 @@ public final class ActivityManagerService extends ActivityManagerNative
                isInteraction = nowElapsed > app.fgInteractionTime + SERVICE_USAGE_INTERACTION_TIME;
            }
        } else {
            isInteraction = app.curProcState
                    <= ActivityManager.PROCESS_STATE_IMPORTANT_FOREGROUND;
            // If the app was being forced to the foreground, by say a Toast, then
            // no need to treat it as an interaction
            isInteraction = app.forcingToForeground == null
                    && app.curProcState <= ActivityManager.PROCESS_STATE_IMPORTANT_FOREGROUND;
            app.fgInteractionTime = 0;
        }
        if (isInteraction && (!app.reportedInteraction