diff options
Diffstat (limited to 'chromium/components/autofill/content/common')
-rw-r--r-- | chromium/components/autofill/content/common/mojom/autofill_agent.mojom | 2 | ||||
-rw-r--r-- | chromium/components/autofill/content/common/mojom/autofill_driver.mojom | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/chromium/components/autofill/content/common/mojom/autofill_agent.mojom b/chromium/components/autofill/content/common/mojom/autofill_agent.mojom index 3e7e9c944a5..28b90f991f2 100644 --- a/chromium/components/autofill/content/common/mojom/autofill_agent.mojom +++ b/chromium/components/autofill/content/common/mojom/autofill_agent.mojom @@ -90,7 +90,7 @@ interface PasswordAutofillAgent { // Lets the renderer know that there are no saved credentials for filling. // This is the "no results" equivalent of FillPasswordForm. - InformNoSavedCredentials(); + InformNoSavedCredentials(bool should_show_popup_without_passwords); // Fills the given |credential| into the last focused text input. FillIntoFocusedField(bool is_password, mojo_base.mojom.String16 credential); diff --git a/chromium/components/autofill/content/common/mojom/autofill_driver.mojom b/chromium/components/autofill/content/common/mojom/autofill_driver.mojom index 96fcfbf363b..1c9d27910e0 100644 --- a/chromium/components/autofill/content/common/mojom/autofill_driver.mojom +++ b/chromium/components/autofill/content/common/mojom/autofill_driver.mojom @@ -71,10 +71,6 @@ interface AutofillDriver { // Sent when a text field is done editing. DidEndTextFieldEditing(); - - // Informs browser of data list values for the current field. - SetDataList(array<mojo_base.mojom.String16> values, - array<mojo_base.mojom.String16> labels); }; // There is one instance of this interface per web contents in the browser |