Chromium Code Reviews| Index: components/autofill/core/browser/autofill_manager.h |
| diff --git a/components/autofill/core/browser/autofill_manager.h b/components/autofill/core/browser/autofill_manager.h |
| index 71109638a4ce6e73c695831c4f07065f7c8a1d9e..2292ba1bb61523af4cd27a91f57f0b069acd8a2b 100644 |
| --- a/components/autofill/core/browser/autofill_manager.h |
| +++ b/components/autofill/core/browser/autofill_manager.h |
| @@ -46,6 +46,7 @@ class PrefRegistrySyncable; |
| namespace autofill { |
| +class AutofillDriver; |
|
vabr (Chromium)
2014/04/01 16:56:08
This forward declaration looks unused, please remo
rchtara
2014/04/03 08:44:50
Done.
|
| class AutofillDataModel; |
| class AutofillDownloadManager; |
| class AutofillExternalDelegate; |
| @@ -93,6 +94,7 @@ class AutofillManager : public AutofillDownloadManager::Observer { |
| int unique_id); |
| void DidShowSuggestions(bool is_new_popup); |
| void OnDidFillAutofillFormData(const base::TimeTicks& timestamp); |
| + void OnShowAutofillDialog(); |
|
vabr (Chromium)
2014/04/01 16:56:08
Is this used?
rchtara
2014/04/03 08:44:50
Done.
|
| void OnDidPreviewAutofillFormData(); |
| // Remove the credit card or Autofill profile that matches |unique_id| |
| @@ -145,6 +147,7 @@ class AutofillManager : public AutofillDownloadManager::Observer { |
| const PasswordFormFillData& fill_data); |
| void OnShowPasswordSuggestions( |
| const FormFieldData& field, |
| + const PasswordForm& password_form, |
| const gfx::RectF& bounds, |
| const std::vector<base::string16>& suggestions, |
| const std::vector<base::string16>& realms); |