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:
@@ -0,0 +1,7 @@
|
||||
package com.android.systemui.wallet.controller;
|
||||
|
||||
import android.service.quickaccesswallet.WalletCard;
|
||||
|
||||
interface IWalletCardsUpdatedListener {
|
||||
void registerNewWalletCards(in List<WalletCard> cards);
|
||||
}
|
||||
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user