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

Commit e04fd741 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 am: 9f0472cb

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



Change-Id: Idc9a6d29ffb441b96e74760c4556e9dd53a43660
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents b5ca3314 9f0472cb
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