| Index: chrome/browser/autofill/autofill_external_delegate.h
|
| diff --git a/chrome/browser/autofill/autofill_external_delegate.h b/chrome/browser/autofill/autofill_external_delegate.h
|
| index 18aa57c4060565d5543969d63310f94aa93e22bc..4ce7a9fe2d65c0f47ed505ca8a016a7b9f7ae630 100644
|
| --- a/chrome/browser/autofill/autofill_external_delegate.h
|
| +++ b/chrome/browser/autofill/autofill_external_delegate.h
|
| @@ -64,6 +64,12 @@ class AutofillExternalDelegate {
|
| const webkit::forms::FormField& field,
|
| const gfx::Rect& bounds);
|
|
|
| + // Remove the given Autocomplete entry from the DB.
|
| + void RemoveAutocompleteEntry(const string16& value);
|
| +
|
| + // Remove the given Autofill profile or credit credit.
|
| + void RemoveAutofillProfileOrCreditCard(int unique_id);
|
| +
|
| // Inform the delegate that the text field editing has ended, this is
|
| // used to help record the metrics of when a new popup is shown.
|
| void DidEndTextFieldEditing();
|
| @@ -149,12 +155,6 @@ class AutofillExternalDelegate {
|
| // currently editing? Used to keep track of state for metrics logging.
|
| bool has_shown_autofill_popup_for_current_edit_;
|
|
|
| - // The menu index of the "Clear" menu item.
|
| - int suggestions_clear_index_;
|
| -
|
| - // The menu index of the "Autofill options..." menu item.
|
| - int suggestions_options_index_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(AutofillExternalDelegate);
|
| };
|
|
|
|
|