Loading src/com/android/launcher3/logging/UserEventDispatcher.java +4 −2 Original line number Diff line number Diff line Loading @@ -106,9 +106,11 @@ public abstract class UserEventDispatcher { if (cn != null) { event.srcTarget[idx].packageNameHash = cn.getPackageName().hashCode(); event.srcTarget[idx].componentHash = cn.hashCode(); if (mPredictedApps != null) { event.srcTarget[idx].predictedRank = mPredictedApps.indexOf( new ComponentKey(cn, itemInfo.user)); } } // Fill in the duration of time spent navigating in Launcher and the container. event.elapsedContainerMillis = System.currentTimeMillis() - mElapsedContainerMillis; Loading Loading
src/com/android/launcher3/logging/UserEventDispatcher.java +4 −2 Original line number Diff line number Diff line Loading @@ -106,9 +106,11 @@ public abstract class UserEventDispatcher { if (cn != null) { event.srcTarget[idx].packageNameHash = cn.getPackageName().hashCode(); event.srcTarget[idx].componentHash = cn.hashCode(); if (mPredictedApps != null) { event.srcTarget[idx].predictedRank = mPredictedApps.indexOf( new ComponentKey(cn, itemInfo.user)); } } // Fill in the duration of time spent navigating in Launcher and the container. event.elapsedContainerMillis = System.currentTimeMillis() - mElapsedContainerMillis; Loading