Merge "Pass the user id for intent app bubbles" into main

This commit is contained in:
Liran Binyamin
2025-01-17 12:29:50 -08:00
committed by Android (Google) Code Review
6 changed files with 62 additions and 9 deletions
@@ -84,6 +84,7 @@ import android.os.Bundle;
import android.os.IRemoteCallback;
import android.os.SystemProperties;
import android.os.Trace;
import android.os.UserHandle;
import android.util.AttributeSet;
import android.view.Display;
import android.view.HapticFeedbackConstants;
@@ -1431,9 +1432,9 @@ public class QuickstepLauncher extends Launcher implements RecentsViewContainer,
}
@Override
public void showAppBubble(Intent intent) {
public void showAppBubble(Intent intent, UserHandle user) {
if (intent == null || intent.getPackage() == null) return;
SystemUiProxy.INSTANCE.get(this).showAppBubble(intent);
SystemUiProxy.INSTANCE.get(this).showAppBubble(intent, user);
}
/** Sets the location of the bubble bar */