Merge "Implement IWalletCardsUpdatedListener.aidl and and IWalletContextualLocationsService.aidl." into udc-dev

This commit is contained in:
Lily Zhou
2023-03-21 19:31:29 +00:00
committed by Android (Google) Code Review
2 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
package com.android.systemui.wallet.controller;
import android.service.quickaccesswallet.WalletCard;
interface IWalletCardsUpdatedListener {
void registerNewWalletCards(in List<WalletCard> cards);
}

View File

@@ -0,0 +1,9 @@
package com.android.systemui.wallet.controller;
import com.android.systemui.wallet.controller.IWalletCardsUpdatedListener;
interface IWalletContextualLocationsService {
void addWalletCardsUpdatedListener(in IWalletCardsUpdatedListener listener);
void onWalletContextualLocationsStateUpdated(in List<String> storeLocations);
}