Fixes out of bounds error in ActivityMetricsLogger.

Add new entry to window mode lookup table.

Bug: 150649664
Test: presubmit

Change-Id: Iad68a1dc028bb47d3f62ad5fc2aa792057aad431
This commit is contained in:
Vishnu Nair
2020-03-02 17:35:37 -08:00
parent 26351d7c4d
commit 511d473d6c

View File

@@ -134,7 +134,7 @@ class ActivityMetricsLogger {
// Preallocated strings we are sending to tron, so we don't have to allocate a new one every
// time we log.
private static final String[] TRON_WINDOW_STATE_VARZ_STRINGS = {
"window_time_0", "window_time_1", "window_time_2", "window_time_3"};
"window_time_0", "window_time_1", "window_time_2", "window_time_3", "window_time_4"};
private int mWindowState = WINDOW_STATE_STANDARD;
private long mLastLogTimeSecs;