Index: chrome/browser/autocomplete_history_manager_unittest.cc |
diff --git a/chrome/browser/autocomplete_history_manager_unittest.cc b/chrome/browser/autocomplete_history_manager_unittest.cc |
index 4f537248301f4851e6f9f4a95af4edef76663c57..23c13eb8e7a65cd3356bcf04f48c361f1945b707 100644 |
--- a/chrome/browser/autocomplete_history_manager_unittest.cc |
+++ b/chrome/browser/autocomplete_history_manager_unittest.cc |
@@ -148,7 +148,9 @@ class MockAutofillExternalDelegate : public AutofillExternalDelegate { |
virtual void OnQuery(int query_id, |
const webkit_glue::FormData& form, |
const webkit_glue::FormField& field, |
- const gfx::Rect& bounds) OVERRIDE {} |
+ const gfx::Rect& bounds, |
+ bool display_warning) OVERRIDE {} |
+ |
MOCK_METHOD5(OnSuggestionsReturned, |
void(int query_id, |
const std::vector<string16>& autofill_values, |
@@ -158,6 +160,19 @@ class MockAutofillExternalDelegate : public AutofillExternalDelegate { |
virtual void HideAutofillPopup() OVERRIDE {} |
+ |
+ virtual void ApplyAutofillSuggestions( |
+ 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, |
+ int separator_index) OVERRIDE {} |
+ |
+ virtual void OnQueryPlatformSpecific( |
+ int query_id, |
+ const webkit_glue::FormData& form, |
+ const webkit_glue::FormField& field) OVERRIDE {} |
+ |
private: |
DISALLOW_COPY_AND_ASSIGN(MockAutofillExternalDelegate); |
}; |