| Index: chrome/browser/autofill/autofill_manager_unittest.cc
|
| diff --git a/chrome/browser/autofill/autofill_manager_unittest.cc b/chrome/browser/autofill/autofill_manager_unittest.cc
|
| index aac5a7a6942f3545b8536220725b82a1be48870e..84d516b105220148f3b80439d6f4f67170f34986 100644
|
| --- a/chrome/browser/autofill/autofill_manager_unittest.cc
|
| +++ b/chrome/browser/autofill/autofill_manager_unittest.cc
|
| @@ -38,6 +38,7 @@
|
| #include "testing/gmock/include/gmock/gmock.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| +#include "ui/gfx/rect.h"
|
| #include "webkit/glue/form_data.h"
|
| #include "webkit/glue/form_field.h"
|
|
|
| @@ -567,7 +568,10 @@ class AutofillManagerTest : public TabContentsWrapperTestHarness {
|
| void GetAutofillSuggestions(int query_id,
|
| const webkit_glue::FormData& form,
|
| const webkit_glue::FormField& field) {
|
| - autofill_manager_->OnQueryFormFieldAutofill(query_id, form, field);
|
| + autofill_manager_->OnQueryFormFieldAutofill(query_id,
|
| + form,
|
| + field,
|
| + gfx::Rect());
|
| }
|
|
|
| void GetAutofillSuggestions(const webkit_glue::FormData& form,
|
| @@ -2871,7 +2875,11 @@ class MockAutofillExternalDelegate : public AutofillExternalDelegate {
|
| const std::vector<string16>& autofill_values,
|
| const std::vector<string16>& autofill_labels,
|
| const std::vector<string16>& autofill_icons,
|
| - const std::vector<int>& autofill_unique_ids) {}
|
| + const std::vector<int>& autofill_unique_ids) OVERRIDE {}
|
| +
|
| + virtual void SetAutofillElementBounds(const gfx::Rect& bounds) OVERRIDE {}
|
| +
|
| + virtual void HideAutofillPopup() OVERRIDE {}
|
|
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(MockAutofillExternalDelegate);
|
|
|