| Index: components/autofill/core/browser/autofill_external_delegate_unittest.cc
|
| diff --git a/components/autofill/core/browser/autofill_external_delegate_unittest.cc b/components/autofill/core/browser/autofill_external_delegate_unittest.cc
|
| index 782f07c22620b025d15d4125b07c32266b7da362..fab6c933fb760c0198e3496576312a874ea2694b 100644
|
| --- a/components/autofill/core/browser/autofill_external_delegate_unittest.cc
|
| +++ b/components/autofill/core/browser/autofill_external_delegate_unittest.cc
|
| @@ -136,9 +136,8 @@ class AutofillExternalDelegateUnitTest : public testing::Test {
|
| FormFieldData field;
|
| field.is_focusable = true;
|
| field.should_autocomplete = true;
|
| - const gfx::RectF element_bounds;
|
|
|
| - external_delegate_->OnQuery(query_id, form, field, element_bounds);
|
| + external_delegate_->OnQuery(query_id, form, field, gfx::RectF());
|
| }
|
|
|
| void IssueOnSuggestionsReturned() {
|
| @@ -585,9 +584,8 @@ TEST_F(AutofillExternalDelegateUnitTest, IgnoreAutocompleteOffForAutofill) {
|
| FormFieldData field;
|
| field.is_focusable = true;
|
| field.should_autocomplete = false;
|
| - const gfx::RectF element_bounds;
|
|
|
| - external_delegate_->OnQuery(kQueryId, form, field, element_bounds);
|
| + external_delegate_->OnQuery(kQueryId, form, field, gfx::RectF());
|
|
|
| std::vector<Suggestion> autofill_items;
|
| autofill_items.push_back(Suggestion());
|
|
|