Implement IWalletCardsUpdatedListener.aidl and

and IWalletContextualLocationsService.aidl.

Used to communicate with PCC/AiAi (cl/506365002), and is a duplicate of cl/518291824.

Bug: 270611301
Change-Id: I49cf85f4d6b9cadbe99da983567600028705e454
This commit is contained in:
Lily Zhou
2023-03-21 16:30:51 +00:00
parent 9884a121a1
commit af62d4ff72
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);
}