Loading mobile/android/geckoview/api.txt +6 −0 Original line number Diff line number Diff line Loading @@ -186,6 +186,10 @@ package org.mozilla.geckoview { method @AnyThread @NonNull public Autocomplete.CreditCard.Builder number(@Nullable String); } public static class Autocomplete.CreditCardSaveOption extends Autocomplete.SaveOption { ctor public CreditCardSaveOption(@NonNull Autocomplete.CreditCard); } public static class Autocomplete.CreditCardSelectOption extends Autocomplete.SelectOption { ctor public CreditCardSelectOption(@NonNull Autocomplete.CreditCard); } Loading Loading @@ -259,6 +263,7 @@ package org.mozilla.geckoview { method @Nullable @UiThread default public GeckoResult<Autocomplete.Address[]> onAddressFetch(); method @UiThread default public void onAddressSave(@NonNull Autocomplete.Address); method @Nullable @UiThread default public GeckoResult<Autocomplete.CreditCard[]> onCreditCardFetch(); method @UiThread default public void onCreditCardSave(@NonNull Autocomplete.CreditCard); method @Nullable @UiThread default public GeckoResult<Autocomplete.LoginEntry[]> onLoginFetch(@NonNull String); method @UiThread default public void onLoginSave(@NonNull Autocomplete.LoginEntry); method @UiThread default public void onLoginUsed(@NonNull Autocomplete.LoginEntry, int); Loading Loading @@ -1098,6 +1103,7 @@ package org.mozilla.geckoview { method @Nullable @UiThread default public GeckoResult<GeckoSession.PromptDelegate.PromptResponse> onButtonPrompt(@NonNull GeckoSession, @NonNull GeckoSession.PromptDelegate.ButtonPrompt); method @Nullable @UiThread default public GeckoResult<GeckoSession.PromptDelegate.PromptResponse> onChoicePrompt(@NonNull GeckoSession, @NonNull GeckoSession.PromptDelegate.ChoicePrompt); method @Nullable @UiThread default public GeckoResult<GeckoSession.PromptDelegate.PromptResponse> onColorPrompt(@NonNull GeckoSession, @NonNull GeckoSession.PromptDelegate.ColorPrompt); method @Nullable @UiThread default public GeckoResult<GeckoSession.PromptDelegate.PromptResponse> onCreditCardSave(@NonNull GeckoSession, @NonNull GeckoSession.PromptDelegate.AutocompleteRequest<Autocomplete.CreditCardSaveOption>); method @Nullable @UiThread default public GeckoResult<GeckoSession.PromptDelegate.PromptResponse> onCreditCardSelect(@NonNull GeckoSession, @NonNull GeckoSession.PromptDelegate.AutocompleteRequest<Autocomplete.CreditCardSelectOption>); method @Nullable @UiThread default public GeckoResult<GeckoSession.PromptDelegate.PromptResponse> onDateTimePrompt(@NonNull GeckoSession, @NonNull GeckoSession.PromptDelegate.DateTimePrompt); method @Nullable @UiThread default public GeckoResult<GeckoSession.PromptDelegate.PromptResponse> onFilePrompt(@NonNull GeckoSession, @NonNull GeckoSession.PromptDelegate.FilePrompt); Loading mobile/android/geckoview/src/main/java/org/mozilla/geckoview/doc-files/CHANGELOG.md +4 −1 Original line number Diff line number Diff line Loading @@ -13,6 +13,9 @@ exclude: true ⚠️ breaking change and deprecation notices ## v94 - Extended [`Autocomplete`][78.7] API to support credit card saving. ## v93 - Removed deprecated ['Autocomplete.LoginStorageDelegate'][78.8]. - Removed deprecated [`GeckoRuntime.getProfileDir`][90.5]. Loading Loading @@ -1043,4 +1046,4 @@ to allow adding gecko profiler markers. [65.24]: {{javadoc_uri}}/CrashReporter.html#sendCrashReport-android.content.Context-android.os.Bundle-java.lang.String- [65.25]: {{javadoc_uri}}/GeckoResult.html [api-version]: 946ddd60a1f2b617c93f4c403a588c33f2d4fdef [api-version]: 1dd93adc7e95d81464cc99db2247be219e43ddcc Loading
mobile/android/geckoview/api.txt +6 −0 Original line number Diff line number Diff line Loading @@ -186,6 +186,10 @@ package org.mozilla.geckoview { method @AnyThread @NonNull public Autocomplete.CreditCard.Builder number(@Nullable String); } public static class Autocomplete.CreditCardSaveOption extends Autocomplete.SaveOption { ctor public CreditCardSaveOption(@NonNull Autocomplete.CreditCard); } public static class Autocomplete.CreditCardSelectOption extends Autocomplete.SelectOption { ctor public CreditCardSelectOption(@NonNull Autocomplete.CreditCard); } Loading Loading @@ -259,6 +263,7 @@ package org.mozilla.geckoview { method @Nullable @UiThread default public GeckoResult<Autocomplete.Address[]> onAddressFetch(); method @UiThread default public void onAddressSave(@NonNull Autocomplete.Address); method @Nullable @UiThread default public GeckoResult<Autocomplete.CreditCard[]> onCreditCardFetch(); method @UiThread default public void onCreditCardSave(@NonNull Autocomplete.CreditCard); method @Nullable @UiThread default public GeckoResult<Autocomplete.LoginEntry[]> onLoginFetch(@NonNull String); method @UiThread default public void onLoginSave(@NonNull Autocomplete.LoginEntry); method @UiThread default public void onLoginUsed(@NonNull Autocomplete.LoginEntry, int); Loading Loading @@ -1098,6 +1103,7 @@ package org.mozilla.geckoview { method @Nullable @UiThread default public GeckoResult<GeckoSession.PromptDelegate.PromptResponse> onButtonPrompt(@NonNull GeckoSession, @NonNull GeckoSession.PromptDelegate.ButtonPrompt); method @Nullable @UiThread default public GeckoResult<GeckoSession.PromptDelegate.PromptResponse> onChoicePrompt(@NonNull GeckoSession, @NonNull GeckoSession.PromptDelegate.ChoicePrompt); method @Nullable @UiThread default public GeckoResult<GeckoSession.PromptDelegate.PromptResponse> onColorPrompt(@NonNull GeckoSession, @NonNull GeckoSession.PromptDelegate.ColorPrompt); method @Nullable @UiThread default public GeckoResult<GeckoSession.PromptDelegate.PromptResponse> onCreditCardSave(@NonNull GeckoSession, @NonNull GeckoSession.PromptDelegate.AutocompleteRequest<Autocomplete.CreditCardSaveOption>); method @Nullable @UiThread default public GeckoResult<GeckoSession.PromptDelegate.PromptResponse> onCreditCardSelect(@NonNull GeckoSession, @NonNull GeckoSession.PromptDelegate.AutocompleteRequest<Autocomplete.CreditCardSelectOption>); method @Nullable @UiThread default public GeckoResult<GeckoSession.PromptDelegate.PromptResponse> onDateTimePrompt(@NonNull GeckoSession, @NonNull GeckoSession.PromptDelegate.DateTimePrompt); method @Nullable @UiThread default public GeckoResult<GeckoSession.PromptDelegate.PromptResponse> onFilePrompt(@NonNull GeckoSession, @NonNull GeckoSession.PromptDelegate.FilePrompt); Loading
mobile/android/geckoview/src/main/java/org/mozilla/geckoview/doc-files/CHANGELOG.md +4 −1 Original line number Diff line number Diff line Loading @@ -13,6 +13,9 @@ exclude: true ⚠️ breaking change and deprecation notices ## v94 - Extended [`Autocomplete`][78.7] API to support credit card saving. ## v93 - Removed deprecated ['Autocomplete.LoginStorageDelegate'][78.8]. - Removed deprecated [`GeckoRuntime.getProfileDir`][90.5]. Loading Loading @@ -1043,4 +1046,4 @@ to allow adding gecko profiler markers. [65.24]: {{javadoc_uri}}/CrashReporter.html#sendCrashReport-android.content.Context-android.os.Bundle-java.lang.String- [65.25]: {{javadoc_uri}}/GeckoResult.html [api-version]: 946ddd60a1f2b617c93f4c403a588c33f2d4fdef [api-version]: 1dd93adc7e95d81464cc99db2247be219e43ddcc