Chromium Code Reviews| Index: components/autofill/content/renderer/password_form_conversion_utils.h |
| diff --git a/components/autofill/content/renderer/password_form_conversion_utils.h b/components/autofill/content/renderer/password_form_conversion_utils.h |
| index d5fa13fa91447a2ac42fd03742ad5b60f07bbaa5..48b805124c2e6a07e24ae67ab4e081775fddbdf7 100644 |
| --- a/components/autofill/content/renderer/password_form_conversion_utils.h |
| +++ b/components/autofill/content/renderer/password_form_conversion_utils.h |
| @@ -6,6 +6,7 @@ |
| #define COMPONENTS_AUTOFILL_CONTENT_RENDERER_PASSWORD_FORM_CONVERSION_UTILS_H_ |
| #include <map> |
| +#include <vector> |
| #include "base/memory/scoped_ptr.h" |
| @@ -17,6 +18,7 @@ class WebString; |
| namespace autofill { |
| +struct FormDataPredictions; |
| struct PasswordForm; |
| // Create a PasswordForm from DOM form. Webkit doesn't allow storing |
| @@ -29,7 +31,8 @@ struct PasswordForm; |
| scoped_ptr<PasswordForm> CreatePasswordForm( |
| const blink::WebFormElement& form, |
| const std::map<const blink::WebInputElement, blink::WebString>* |
| - nonscript_modified_values); |
| + nonscript_modified_values, |
| + const std::vector<autofill::FormDataPredictions>* form_predictions); |
|
vabr (Chromium)
2015/03/23 16:48:23
nit: Please add a comment about the new argument.
dvadym
2015/03/23 17:20:44
Added comment
// |form_predictions| is Autofill se
|
| } // namespace autofill |