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

Commit 886e893d 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: I0249a8ce7b6c2f6b842bb38b3dad5d7789b08a8e
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 99d921e3 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