This repository has been archived by the owner on Nov 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 473
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
For #12289 Add lib-auth for authentication using biometrics or PIN.
- Loading branch information
Showing
20 changed files
with
285 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
...prompts/src/main/java/mozilla/components/feature/prompts/creditcard/CreditCardDelegate.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
|
||
package mozilla.components.feature.prompts.creditcard | ||
|
||
import mozilla.components.concept.storage.CreditCardEntry | ||
import mozilla.components.feature.prompts.concept.SelectablePromptView | ||
|
||
/** | ||
* Delegate for credit card picker and related callbacks | ||
*/ | ||
interface CreditCardDelegate { | ||
/** | ||
* The [SelectablePromptView] used for [CreditCardPicker] to display a | ||
* selectable prompt list of credit cards. | ||
*/ | ||
val creditCardPickerView: SelectablePromptView<CreditCardEntry>? | ||
get() = null | ||
|
||
/** | ||
* Callback invoked when a user selects "Manage credit cards" | ||
* from the select credit card prompt. | ||
*/ | ||
val onManageCreditCards: () -> Unit | ||
get() = {} | ||
|
||
/** | ||
* Callback invoked when a user selects a credit card option | ||
* from the select credit card prompt | ||
*/ | ||
val onSelectCreditCard: () -> Unit | ||
get() = {} | ||
} |
Oops, something went wrong.