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 ee42ca34a0546756de28517f312de85f843bda6e..9ee1502e14e68a5798835e0280ad5ba2947ed682 100644 |
--- a/chrome/browser/autofill/autofill_manager_unittest.cc |
+++ b/chrome/browser/autofill/autofill_manager_unittest.cc |
@@ -15,7 +15,7 @@ |
#include "base/utf_string_conversions.h" |
#include "chrome/browser/autocomplete_history_manager.h" |
#include "chrome/browser/autofill/autofill_common_test.h" |
-#include "chrome/browser/autofill/autofill_external_delegate.h" |
+#include "chrome/browser/autofill/autofill_external_delegate_test.h" |
#include "chrome/browser/autofill/autofill_manager.h" |
#include "chrome/browser/autofill/autofill_profile.h" |
#include "chrome/browser/autofill/credit_card.h" |
@@ -2862,11 +2862,11 @@ TEST_F(AutofillManagerTest, DeterminePossibleFieldTypesForUpload) { |
namespace { |
-class MockAutofillExternalDelegate : public AutofillExternalDelegate { |
+class MockAutofillExternalDelegate : public AutofillExternalDelegateTest { |
public: |
explicit MockAutofillExternalDelegate(TabContentsWrapper* wrapper, |
AutofillManager* autofill_manager) |
- : AutofillExternalDelegate(wrapper, autofill_manager) {} |
+ : AutofillExternalDelegateTest(wrapper, autofill_manager) {} |
virtual ~MockAutofillExternalDelegate() {} |
MOCK_METHOD5(OnQuery, void(int query_id, |
@@ -2875,15 +2875,6 @@ class MockAutofillExternalDelegate : public AutofillExternalDelegate { |
const gfx::Rect& bounds, |
bool display_warning)); |
- 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::forms::FormData& form, |
const webkit::forms::FormField& field, |