[components] Issue https://github.com/mozilla-mobile/android-components/issues/10205...
commit838c9e62222a09b48b1117e1a5bc93fb65e94d6e
authorGabriel Luong <gabriel.luong@gmail.com>
Sun, 18 Apr 2021 15:39:03 +0000 (18 11:39 -0400)
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Tue, 11 May 2021 01:22:18 +0000 (11 01:22 +0000)
tree3e8f818e1693e9af206bce1b1be1d9bba369c4d1
parentb1f32e300789935af7b59a8c02df8ed16c150e4a
[components] Issue https://github.com/mozilla-mobile/android-components/issues/10205: Add support for select credit card prompt

- Implements an override function of `onCreditCardSelect` in `GeckoPromptDelegate`
- Adds a new `CreditCard` data class in `concept-engine`. This is a parallel of GV's
`Autocomplete.CreditCard`. We can't using the existing `CreditCard` from `concept-storage`
since that has encryption dependencies whereas the card number is already decrypted
when it reaches GV.
- Adds a new `SelectCreditCard` in `PromptRequest`
mobile/android/android-components/components/browser/engine-gecko/src/main/java/mozilla/components/browser/engine/gecko/ext/CreditCard.kt [new file with mode: 0644]
mobile/android/android-components/components/browser/engine-gecko/src/main/java/mozilla/components/browser/engine/gecko/prompt/GeckoPromptDelegate.kt
mobile/android/android-components/components/browser/engine-gecko/src/test/java/mozilla/components/browser/engine/gecko/prompt/GeckoPromptDelegateTest.kt
mobile/android/android-components/components/concept/engine/src/main/java/mozilla/components/concept/engine/prompt/CreditCard.kt [new file with mode: 0644]
mobile/android/android-components/components/concept/engine/src/main/java/mozilla/components/concept/engine/prompt/PromptRequest.kt
mobile/android/android-components/components/concept/engine/src/test/java/mozilla/components/concept/engine/prompt/CreditCardTest.kt [new file with mode: 0644]
mobile/android/android-components/components/concept/engine/src/test/java/mozilla/components/concept/engine/prompt/PromptRequestTest.kt
mobile/android/android-components/components/feature/prompts/src/main/java/mozilla/components/feature/prompts/PromptFeature.kt
mobile/android/android-components/docs/changelog.md