Index: chrome/browser/autofill/test_autofill_external_delegate.cc |
diff --git a/chrome/browser/autofill/test_autofill_external_delegate.cc b/chrome/browser/autofill/test_autofill_external_delegate.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9f076f1e863a1129fd02680e4115e0918e58da84 |
--- /dev/null |
+++ b/chrome/browser/autofill/test_autofill_external_delegate.cc |
@@ -0,0 +1,26 @@ |
+// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "chrome/browser/autofill/test_autofill_external_delegate.h" |
+ |
+TestAutofillExternalDelegate::TestAutofillExternalDelegate( |
+ TabContentsWrapper* wrapper, AutofillManager* autofill_manager) : |
+ AutofillExternalDelegate(wrapper, autofill_manager) {} |
+ |
+TestAutofillExternalDelegate::~TestAutofillExternalDelegate() {} |
+ |
+void TestAutofillExternalDelegate::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) {} |
+ |
+void TestAutofillExternalDelegate::OnQueryPlatformSpecific( |
+ int query_id, |
+ const webkit::forms::FormData& form, |
+ const webkit::forms::FormField& field, |
+ const gfx::Rect& bounds) {} |
+ |
+void TestAutofillExternalDelegate::HideAutofillPopupInternal() {} |