| Index: components/autofill/core/browser/autofill_popup_delegate.h
|
| diff --git a/components/autofill/core/browser/autofill_popup_delegate.h b/components/autofill/core/browser/autofill_popup_delegate.h
|
| index 2eff7c1141f8fc1fbd78fb966f3fae6fad43ea8f..8c77edb445b7310541f36afe62a8ecc228c512f8 100644
|
| --- a/components/autofill/core/browser/autofill_popup_delegate.h
|
| +++ b/components/autofill/core/browser/autofill_popup_delegate.h
|
| @@ -28,6 +28,13 @@ class AutofillPopupDelegate {
|
| virtual void DidAcceptSuggestion(const base::string16& value,
|
| int identifier) = 0;
|
|
|
| + // Returns whether the given value can be deleted, and if true,
|
| + // fills out |title| and |body|.
|
| + virtual bool GetDeletionConfirmationText(const base::string16& value,
|
| + int identifier,
|
| + base::string16* title,
|
| + base::string16* body) = 0;
|
| +
|
| // Delete the described suggestion. Returns true if something was deleted,
|
| // or false if deletion is not allowed.
|
| virtual bool RemoveSuggestion(const base::string16& value,
|
|
|