Index: components/autofill/core/browser/test_autofill_external_delegate.cc |
diff --git a/components/autofill/core/browser/test_autofill_external_delegate.cc b/components/autofill/core/browser/test_autofill_external_delegate.cc |
index 94e6b9ec8bc72bdc8be2c8dc36a778ab73aa159e..bfb0638db097d924289d84c8ec3f74196d935d96 100644 |
--- a/components/autofill/core/browser/test_autofill_external_delegate.cc |
+++ b/components/autofill/core/browser/test_autofill_external_delegate.cc |
@@ -3,6 +3,7 @@ |
// found in the LICENSE file. |
#include "components/autofill/core/browser/test_autofill_external_delegate.h" |
+#include "third_party/WebKit/public/web/WebFormElement.h" |
#include "ui/gfx/rect.h" |
@@ -16,7 +17,9 @@ void GenerateTestAutofillPopup( |
field.is_focusable = true; |
field.should_autocomplete = true; |
gfx::RectF bounds(100.f, 100.f); |
- autofill_external_delegate->OnQuery(query_id, form, field, bounds, false); |
+ blink::WebFormElement webformelement; |
+ autofill_external_delegate->OnQuery(query_id, form, field, |
+ webformelement, bounds, false); |
std::vector<base::string16> autofill_item; |
autofill_item.push_back(base::string16()); |