1 package com.android.systemui.wallet.controller; 2 3 import com.android.systemui.wallet.controller.IWalletCardsUpdatedListener; 4 5 interface IWalletContextualLocationsService { addWalletCardsUpdatedListener(in IWalletCardsUpdatedListener listener)6 void addWalletCardsUpdatedListener(in IWalletCardsUpdatedListener listener); 7 onWalletContextualLocationsStateUpdated(in List<String> storeLocations)8 void onWalletContextualLocationsStateUpdated(in List<String> storeLocations); 9 }