Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit af62d4ff authored by Lily Zhou's avatar Lily Zhou
Browse files

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
parent 9884a121
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
package com.android.systemui.wallet.controller;

import android.service.quickaccesswallet.WalletCard;

interface IWalletCardsUpdatedListener {
  void registerNewWalletCards(in List<WalletCard> cards);
}
 No newline at end of file
+9 −0
Original line number Diff line number Diff line
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);
}
 No newline at end of file