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 735f18a29950f957c013e2a364f46ba2c6428880..c9e5c8af9f5dc3803a7e4bc9972b07ffbda9ee5a 100644 |
| --- a/components/autofill/core/browser/autofill_manager.h |
| +++ b/components/autofill/core/browser/autofill_manager.h |
| @@ -26,6 +26,7 @@ |
| #include "components/autofill/core/browser/personal_data_manager.h" |
| #include "components/autofill/core/common/form_data.h" |
| #include "components/autofill/core/common/forms_seen_state.h" |
| +#include "components/autofill/core/common/password_form.h" |
|
vabr (Chromium)
2014/01/29 16:09:36
If possible, use forward reference instead of #inc
riadh.chtara
2014/02/04 16:22:03
Done.
|
| #include "third_party/WebKit/public/web/WebFormElement.h" |
| class GURL; |
| @@ -135,6 +136,7 @@ class AutofillManager : public AutofillDownloadManager::Observer { |
| void OnQueryFormFieldAutofill(int query_id, |
| const FormData& form, |
| const FormFieldData& field, |
| + const PasswordForm& password_form, |
| const gfx::RectF& bounding_box, |
| bool display_warning); |
| void OnDidEndTextFieldEditing(); |
| @@ -142,11 +144,11 @@ class AutofillManager : public AutofillDownloadManager::Observer { |
| void OnAddPasswordFormMapping( |
| const FormFieldData& form, |
| const PasswordFormFillData& fill_data); |
| - void OnShowPasswordSuggestions( |
| - const FormFieldData& field, |
| - const gfx::RectF& bounds, |
| - const std::vector<base::string16>& suggestions, |
| - const std::vector<base::string16>& realms); |
| + 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); |
| void OnSetDataList(const std::vector<base::string16>& values, |
| const std::vector<base::string16>& labels); |