diff options
Diffstat (limited to 'chrome/browser/autocomplete_history_manager_unittest.cc')
-rw-r--r-- | chrome/browser/autocomplete_history_manager_unittest.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/chrome/browser/autocomplete_history_manager_unittest.cc b/chrome/browser/autocomplete_history_manager_unittest.cc index 6a1047e..4f53724 100644 --- a/chrome/browser/autocomplete_history_manager_unittest.cc +++ b/chrome/browser/autocomplete_history_manager_unittest.cc @@ -19,6 +19,7 @@ #include "content/test/test_browser_thread.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" +#include "ui/gfx/rect.h" #include "webkit/glue/form_data.h" using content::BrowserThread; @@ -146,7 +147,8 @@ class MockAutofillExternalDelegate : public AutofillExternalDelegate { virtual void OnQuery(int query_id, const webkit_glue::FormData& form, - const webkit_glue::FormField& field) {} + const webkit_glue::FormField& field, + const gfx::Rect& bounds) OVERRIDE {} MOCK_METHOD5(OnSuggestionsReturned, void(int query_id, const std::vector<string16>& autofill_values, @@ -154,6 +156,8 @@ class MockAutofillExternalDelegate : public AutofillExternalDelegate { const std::vector<string16>& autofill_icons, const std::vector<int>& autofill_unique_ids)); + virtual void HideAutofillPopup() OVERRIDE {} + private: DISALLOW_COPY_AND_ASSIGN(MockAutofillExternalDelegate); }; @@ -186,4 +190,3 @@ TEST_F(AutocompleteHistoryManagerTest, ExternalDelegate) { // Should trigger a call to OnSuggestionsReturned, verified by the mock. autocomplete_history_manager.SendSuggestions(NULL); } - |