Merge "Don't create copies of Icon bitmaps for Smartspace" into udc-dev

This commit is contained in:
Treehugger Robot
2023-06-21 10:30:17 +00:00
committed by Android (Google) Code Review
2 changed files with 5 additions and 0 deletions

View File

@@ -348,6 +348,10 @@ public final class SmartspaceAction implements Parcelable {
*/
@NonNull
public SmartspaceAction build() {
if (mIcon != null) {
mIcon.convertToAshmem();
}
return new SmartspaceAction(mId, mIcon, mTitle, mSubtitle, mContentDescription,
mPendingIntent, mIntent, mUserHandle, mExtras);
}

View File

@@ -171,6 +171,7 @@ public final class Icon implements Parcelable {
*/
@NonNull
public Icon build() {
mIcon.convertToAshmem();
return new Icon(mIcon, mContentDescription, mShouldTint);
}
}