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

Commit 9f0472cb authored by Lily Zhou's avatar Lily Zhou Committed by Automerger Merge Worker
Browse files

Merge "Implement IWalletCardsUpdatedListener.aidl and and...

Merge "Implement IWalletCardsUpdatedListener.aidl and and IWalletContextualLocationsService.aidl." into udc-dev am: 69f7a296

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/22168927



Change-Id: Ic5df6aa35a8079fdcb4a95759450383dad73a329
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 4ecb3e02 69f7a296
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